Uses of Class
org.codehaus.modello.plugin.java.javasource.JType

Packages that use JType
org.codehaus.modello.plugin.java.javasource   
 

Uses of JType in org.codehaus.modello.plugin.java.javasource
 

Subclasses of JType in org.codehaus.modello.plugin.java.javasource
 class JClass
          A representation of the Java Source code for a Java Class.
 class JInterface
          A representation of the Java Source code for a Java Interface.
 

Fields in org.codehaus.modello.plugin.java.javasource declared as JType
static JType JType.Boolean
           
static JType JType.Byte
           
static JType JType.Char
           
static JType JType.Double
           
static JType JType.Float
           
static JType JType.Int
           
static JType JType.Long
           
static JType JType.Short
           
 

Methods in org.codehaus.modello.plugin.java.javasource that return JType
 JType JType.createArray()
          Creates a JType Object representing an array of the current JType.
 JType JType.getComponentType()
          If this JType is an array this method will returns the component type of the array, otherwise null will be returned.
 JType JMethod.getReturnType()
          Returns the JType that represents the return type of the method.
 JType JMethodSignature.getReturnType()
          Returns the JType that represents the return type for the method signature.
 JType JField.getType()
          Returns the JType represting the type of this JField
 JType JParameter.getType()
          Returns the parameter type
 

Methods in org.codehaus.modello.plugin.java.javasource with parameters of type JType
 void JParameter.setType(JType type)
          Sets the type of this parameter
 

Constructors in org.codehaus.modello.plugin.java.javasource with parameters of type JType
JField(JType type, java.lang.String name)
           
JMethod(JType returnType, java.lang.String name)
          Creates a new JMethod with the given name and returnType.
JMethodSignature(java.lang.String name, JType returnType)
          Creates a new method with the given name and return type.
JParameter(JType type, java.lang.String name)
          Creates a new JParameter with the given type, and name
 



Copyright © 2001-2011 Codehaus. All Rights Reserved.