mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-07 20:10:53 +08:00
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:
parent
c1eb7f5ccd
commit
7b9b3ed32c
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user