/[classpath]/classpath/javax/naming/event/EventContext.java
ViewVC logotype

Diff of /classpath/javax/naming/event/EventContext.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mark, Sat Nov 23 21:44:28 2002 UTC revision 1.2 by mkoch, Sun Oct 12 16:40:09 2003 UTC
# Line 46  import javax.naming.*; Line 46  import javax.naming.*;
46    
47  public interface EventContext extends Context  public interface EventContext extends Context
48  {  {
49    public static final int OBJECT_SCOPE = 0;    int OBJECT_SCOPE = 0;
50    public static final int ONELEVEL_SCOPE = 1;    int ONELEVEL_SCOPE = 1;
51    public static final int SUBTREE_SCOPE = 2;    int SUBTREE_SCOPE = 2;
52    
53    public void addNamingListener(Name target, int scope, NamingListener l)    void addNamingListener (Name target, int scope, NamingListener l)
54      throws NamingException;      throws NamingException;
55    public void addNamingListener(String target, int scope, NamingListener l)    
56      void addNamingListener (String target, int scope, NamingListener l)
57      throws NamingException;      throws NamingException;
58    public void removeNamingListener(NamingListener l) throws NamingException;    
59    public boolean targetMustExist() throws NamingException;    void removeNamingListener (NamingListener l) throws NamingException;
60      
61      boolean targetMustExist() throws NamingException;
62  }  }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26