Commit 7b9b3ed3 by Michael Koch Committed by Michael Koch

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
parent c1eb7f5c
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> 2003-12-11 Mohan Embar <gnustuff@thisiscool.com>
* gnu/java/nio/SocketChannelImpl.java * gnu/java/nio/SocketChannelImpl.java
......
...@@ -35,29 +35,31 @@ this exception to your version of the library, but you are not ...@@ -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 obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */ exception statement from your version. */
package javax.naming.event; 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> * @author Warren Levy <warrenl@redhat.com>
* @date June 1, 2001 * @date June 1, 2001
*/ */
public interface EventDirContext extends EventContext, DirContext public interface EventDirContext extends EventContext, DirContext
{ {
void addNamingListener (Name target, String filter, SearchControls ctls, void addNamingListener(Name target, String filter, SearchControls ctls,
NamingListener l) throws NamingException; NamingListener l) throws NamingException;
void addNamingListeneri (String target, String filter, SearchControls ctls, void addNamingListener(String target, String filter, SearchControls ctls,
NamingListener l) throws NamingException; NamingListener l) throws NamingException;
void addNamingListener (Name target, String filter, Object[] filterArgs, void addNamingListener(Name target, String filter, Object[] filterArgs,
SearchControls ctls, NamingListener l) SearchControls ctls, NamingListener l)
throws NamingException; throws NamingException;
void addNamingListener(String target, String filter, void addNamingListener(String target, String filter, Object[] filterArgs,
Object[] filterArgs, SearchControls ctls, SearchControls ctls, NamingListener l)
NamingListener l) throws NamingException; throws NamingException;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment