Uses of Class
net.sf.rej.java.Interface

Packages that use Interface
net.sf.rej.gui Constains classes for the reJ graphical user interface. 
net.sf.rej.gui.action Contains reJ GUI actions. 
net.sf.rej.gui.structure Provides components for a JTree which models the structure of a class file. 
net.sf.rej.java Contains core bytecode parsing and construction related classes. 
 

Uses of Interface in net.sf.rej.gui
 

Method parameters in net.sf.rej.gui with type arguments of type Interface
 void EditorFacade.modifyClass(ClassFile cf, AccessFlags flags, java.lang.String className, java.lang.String superName, java.util.List<Interface> remainingInterfaces, java.util.List<java.lang.String> newInterfaces)
           
 

Uses of Interface in net.sf.rej.gui.action
 

Constructor parameters in net.sf.rej.gui.action with type arguments of type Interface
ModifyClassPropertiesAction(ClassFile cf, AccessFlags flags, java.lang.String className, java.lang.String superName, java.util.List<Interface> remainingInterfaces, java.util.List<java.lang.String> newInterfaces)
           
 

Uses of Interface in net.sf.rej.gui.structure
 

Methods in net.sf.rej.gui.structure that return Interface
 Interface InterfaceNode.getInterface()
           
 

Constructors in net.sf.rej.gui.structure with parameters of type Interface
InterfaceNode(ClassFile cf, Interface interface0)
           
 

Uses of Interface in net.sf.rej.java
 

Methods in net.sf.rej.java that return types with arguments of type Interface
 java.util.List<Interface> ClassFile.getInterfaces()
          Returns a read-only list of the interfaces implemented by this class.
 

Method parameters in net.sf.rej.java with type arguments of type Interface
 void ClassFile.setInterfaces(java.util.List<Interface> interfaces)
          Sets all the interfaces for this class.