Uses of Class
org.objectweb.jac.ide.Method

Packages that use Method
org.objectweb.jac.ide This package contains the implementation of the JAC's IDE: UMLAF (for UML Aspectual Factory). 
org.objectweb.jac.ide.diagrams   
org.objectweb.jac.ide.swing   
 

Uses of Method in org.objectweb.jac.ide
 

Subclasses of Method in org.objectweb.jac.ide
 class AspectMethod
           
 class Constructor
           
 class FieldMethod
          Base class for Getter and Setter.
 class Getter
          Getter method for a field.
 class Setter
           
 

Methods in org.objectweb.jac.ide that return Method
 Method Parameter.getMethod()
           
 Method Class.findMethod(String name, List parameters)
          Finds a method with a given name and parameters
 Method Class.findMethod(Method method)
          Finds a method with the same name and the same parameter types as a given method.
 Method Method.cloneMethod()
          Clone this method
 Method RelationRole.getAdder()
           
 Method RelationRole.getRemover()
           
 Method RelationRole.getClearer()
           
 Method RelationRole.getGetter()
           
 

Methods in org.objectweb.jac.ide with parameters of type Method
 void GuiPlugin.genMethodConfig(Writer output, Project project, Package pkg, Class cl, Method method)
           
static void CodeGeneration.createMethodCode(LineNumberWriter output, Map lineNumbers, Method method, boolean isInterface)
          Generate the code for a method
 void Parameter.setMethod(Method method)
           
 void Class.addMethod(Method m)
           
 void Class.removeMethod(Method m)
           
 Method Class.findMethod(Method method)
          Finds a method with the same name and the same parameter types as a given method.
 void Class.addMethodIntf(Method m)
           
 void Class.removeMethodIntf(Method m)
           
 void Class.overrideMethod(Method method)
          Adds an overriding method
 void Class.implementMethod(Method method)
          Adds an implementation for an abstract method
 void RelationRole.setAdder(Method method)
           
 void RelationRole.initAdder(Method adder)
          Initialize adder.
 void RelationRole.setRemover(Method method)
           
 void RelationRole.initRemover(Method remover)
          Initialize remover.
 void RelationRole.setClearer(Method method)
           
 void RelationRole.initClearer(Method clearer)
          Initialize clearer.
 void RelationRole.setGetter(Method method)
           
 void RelationRole.initGetter(Method getter)
          Initialize getter.
 void AbstractPlugin.genMethodConfig(Writer output, Project project, Package pkg, Class cl, Method method)
          Generate default rtti config code for a method
 

Uses of Method in org.objectweb.jac.ide.diagrams
 

Constructors in org.objectweb.jac.ide.diagrams with parameters of type Method
MethodFigure(Method method, ClassFigure parentFigure)
           
 

Uses of Method in org.objectweb.jac.ide.swing
 

Constructors in org.objectweb.jac.ide.swing with parameters of type Method
MethodBodyCompletionEngine(Method method, SHEditor editor)
          Creates a completion engine for a given method.