EventDirContext.java: Jalopied.

2003-12-11  Michael Koch  <konqueror@gmx.de>

	* javax/naming/event/EventDirContext.java: Jalopied.
	(addNamingListener): Fixed typo in method name.

From-SVN: r74539
This commit is contained in:
Michael Koch 2003-12-11 15:41:21 +00:00 committed by Michael Koch
parent c1eb7f5ccd
commit 7b9b3ed32c
2 changed files with 26 additions and 18 deletions

View File

@ -1,3 +1,9 @@
2003-12-11 Michael Koch <konqueror@gmx.de>
* javax/naming/event/EventDirContext.java: Jalopied.
(addNamingListener): Fixed typo in method name.
2003-12-11 Mohan Embar <gnustuff@thisiscool.com>
* gnu/java/nio/SocketChannelImpl.java

View File

@ -35,29 +35,31 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package javax.naming.event;
import javax.naming.*;
import javax.naming.directory.*;
import javax.naming.Name;
import javax.naming.NamingException;
import javax.naming.directory.DirContext;
import javax.naming.directory.SearchControls;
/**
* @author Warren Levy <warrenl@redhat.com>
* @date June 1, 2001
*/
public interface EventDirContext extends EventContext, DirContext
{
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;
void addNamingListener(String target, String filter,
Object[] filterArgs, SearchControls ctls,
NamingListener l) throws NamingException;
void addNamingListener(Name target, String filter, SearchControls ctls,
NamingListener l) throws NamingException;
void addNamingListener(String target, String filter, SearchControls ctls,
NamingListener l) throws NamingException;
void addNamingListener(Name target, String filter, Object[] filterArgs,
SearchControls ctls, NamingListener l)
throws NamingException;
void addNamingListener(String target, String filter, Object[] filterArgs,
SearchControls ctls, NamingListener l)
throws NamingException;
}