Context.java, [...]: Removing redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * javax/naming/Context.java, javax/naming/Name.java, javax/naming/NameParser.java, javax/naming/NamingEnumeration.java, javax/naming/Referenceable.java, javax/naming/directory/Attribute.java, javax/naming/directory/Attributes.java, javax/naming/directory/DirContext.java, javax/naming/event/EventContext.java, javax/naming/event/EventDirContext.java, javax/naming/event/NamespaceChangeListener.java, javax/naming/event/NamingListener.java, javax/naming/event/ObjectChangeListener.java, javax/naming/ldap/Control.java, javax/naming/ldap/ExtendedRequest.java, javax/naming/ldap/ExtendedResponse.java, javax/naming/ldap/HasControls.java, javax/naming/ldap/LdapContext.java, javax/naming/ldap/UnsolicitedNotification.java, javax/naming/ldap/UnsolicitedNotificationListener.java, javax/naming/spi/DirObjectFactory.java, javax/naming/spi/DirStateFactory.java, javax/naming/spi/InitialContextFactory.java, javax/naming/spi/InitialContextFactoryBuilder.java, javax/naming/spi/ObjectFactory.java, javax/naming/spi/ObjectFactoryBuilder.java, javax/naming/spi/Resolver.java, javax/naming/spi/StateFactory.java: Removing redundant modifiers. From-SVN: r72362
This commit is contained in:
parent
7ef0daad61
commit
547f7f8b9d
29 changed files with 213 additions and 176 deletions
|
@ -46,14 +46,17 @@ import javax.naming.*;
|
|||
|
||||
public interface EventContext extends Context
|
||||
{
|
||||
public static final int OBJECT_SCOPE = 0;
|
||||
public static final int ONELEVEL_SCOPE = 1;
|
||||
public static final int SUBTREE_SCOPE = 2;
|
||||
int OBJECT_SCOPE = 0;
|
||||
int ONELEVEL_SCOPE = 1;
|
||||
int SUBTREE_SCOPE = 2;
|
||||
|
||||
public void addNamingListener(Name target, int scope, NamingListener l)
|
||||
void addNamingListener (Name target, int scope, NamingListener l)
|
||||
throws NamingException;
|
||||
public void addNamingListener(String target, int scope, NamingListener l)
|
||||
|
||||
void addNamingListener (String target, int scope, NamingListener l)
|
||||
throws NamingException;
|
||||
public void removeNamingListener(NamingListener l) throws NamingException;
|
||||
public boolean targetMustExist() throws NamingException;
|
||||
|
||||
void removeNamingListener (NamingListener l) throws NamingException;
|
||||
|
||||
boolean targetMustExist() throws NamingException;
|
||||
}
|
||||
|
|
|
@ -47,15 +47,17 @@ import javax.naming.directory.*;
|
|||
|
||||
public interface EventDirContext extends EventContext, DirContext
|
||||
{
|
||||
public void addNamingListener(Name target, String filter, SearchControls ctls,
|
||||
NamingListener l) throws NamingException;
|
||||
public void addNamingListener(String target, String filter,
|
||||
SearchControls ctls, NamingListener l)
|
||||
void addNamingListener (Name target, String filter, SearchControls ctls,
|
||||
NamingListener l) throws NamingException;
|
||||
|
||||
void addNamingListeneri (String target, String filter, SearchControls ctls,
|
||||
NamingListener l) throws NamingException;
|
||||
|
||||
void addNamingListener (Name target, String filter, Object[] filterArgs,
|
||||
SearchControls ctls, NamingListener l)
|
||||
throws NamingException;
|
||||
public void addNamingListener(Name target, String filter, Object[] filterArgs,
|
||||
SearchControls ctls, NamingListener l)
|
||||
throws NamingException;
|
||||
public void addNamingListener(String target, String filter,
|
||||
|
||||
void addNamingListener(String target, String filter,
|
||||
Object[] filterArgs, SearchControls ctls,
|
||||
NamingListener l) throws NamingException;
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ package javax.naming.event;
|
|||
|
||||
public interface NamespaceChangeListener extends NamingListener
|
||||
{
|
||||
public void objectAdded(NamingEvent evt);
|
||||
public void objectRemoved(NamingEvent evt);
|
||||
public void objectRenamed(NamingEvent evt);
|
||||
void objectAdded(NamingEvent evt);
|
||||
void objectRemoved(NamingEvent evt);
|
||||
void objectRenamed(NamingEvent evt);
|
||||
}
|
||||
|
|
|
@ -46,5 +46,5 @@ import java.util.EventListener;
|
|||
|
||||
public interface NamingListener extends EventListener
|
||||
{
|
||||
public void namingExceptionThrown(NamingExceptionEvent evt);
|
||||
void namingExceptionThrown(NamingExceptionEvent evt);
|
||||
}
|
||||
|
|
|
@ -45,5 +45,5 @@ package javax.naming.event;
|
|||
|
||||
public interface ObjectChangeListener extends NamingListener
|
||||
{
|
||||
public void objectChanged(NamingEvent evt);
|
||||
void objectChanged(NamingEvent evt);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue