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

Packages that use JavaType
net.sf.rej.gui.dialog Contains the dialog classes of the reJ graphical user interface 
net.sf.rej.java Contains core bytecode parsing and construction related classes. 
net.sf.rej.java.attribute.generics Provides classes for modeling Signature attributes and other generics related constructs 
 

Uses of JavaType in net.sf.rej.gui.dialog
 

Methods in net.sf.rej.gui.dialog that return JavaType
 JavaType TypeChooseDialog.getType()
           
 

Methods in net.sf.rej.gui.dialog that return types with arguments of type JavaType
 java.util.List<JavaType> ParameterChooseDialog.getParams()
           
 

Methods in net.sf.rej.gui.dialog with parameters of type JavaType
 void TypeChooseDialog.invoke(JavaType retType, boolean enableVoid)
           
 

Uses of JavaType in net.sf.rej.java
 

Subclasses of JavaType in net.sf.rej.java
static class JavaType.ImmutableJavaType
           
 

Fields in net.sf.rej.java declared as JavaType
static JavaType JavaType.INT
          An immutable constant for the primitive type int (with no dimensions)
static JavaType JavaType.JAVA_LANG_OBJECT
          An immutable constant for the type java.lang.Object (with no dimensions)
 

Methods in net.sf.rej.java that return JavaType
 JavaType Descriptor.getReturn()
           
 

Methods in net.sf.rej.java that return types with arguments of type JavaType
 java.util.List<JavaType> Descriptor.getParamList()
           
 

Methods in net.sf.rej.java with parameters of type JavaType
 void Descriptor.setReturn(JavaType type)
           
 

Method parameters in net.sf.rej.java with type arguments of type JavaType
 void Descriptor.setParamList(java.util.List<JavaType> list)
           
 

Uses of JavaType in net.sf.rej.java.attribute.generics
 

Methods in net.sf.rej.java.attribute.generics that return JavaType
 JavaType GenericJavaType.getBaseType()