EventDirContext.java: Jalopied.
authorMichael Koch <konqueror@gmx.de>
Thu, 11 Dec 2003 15:41:21 +0000 (15:41 +0000)
committerMichael Koch <mkoch@gcc.gnu.org>
Thu, 11 Dec 2003 15:41:21 +0000 (15:41 +0000)
2003-12-11  Michael Koch  <konqueror@gmx.de>

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

From-SVN: r74539

libjava/ChangeLog
libjava/javax/naming/event/EventDirContext.java

index 5a7f73b..b82849b 100644 (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
index 259610e..5d89e6b 100644 (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 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;
+  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;
 }