Class JArrayType
- java.lang.Object
-
- org.codehaus.modello.plugin.java.javasource.JType
-
- org.codehaus.modello.plugin.java.javasource.JComponentizedType
-
- org.codehaus.modello.plugin.java.javasource.JArrayType
-
public final class JArrayType extends JComponentizedType
JType sub-class for Arrays.- Since:
- 1.0.4
- Version:
- $Revision$ $Date$
-
-
Constructor Summary
Constructors Constructor Description JArrayType(JType componentType, boolean useJava50)
Creates an instance of a array type, of type 'name'.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Returns the String representation of this JType, which is simply the name of this type.-
Methods inherited from class org.codehaus.modello.plugin.java.javasource.JComponentizedType
getComponentType, isUseJava50
-
Methods inherited from class org.codehaus.modello.plugin.java.javasource.JType
changePackage, createArray, getLocalName, getName, isArray, isPrimitive
-
-
-
-
Constructor Detail
-
JArrayType
public JArrayType(JType componentType, boolean useJava50)
Creates an instance of a array type, of type 'name'.- Parameters:
componentType
- Component type.useJava50
- True if Java 5.0 should be generated.
-
-