Package org.exolab.javasource
Class JArrayType
- java.lang.Object
-
- org.exolab.javasource.JType
-
- org.exolab.javasource.JComponentizedType
-
- org.exolab.javasource.JArrayType
-
public final class JArrayType extends JComponentizedType
JType sub-class for Arrays.- Since:
- 1.0.4
- Version:
- $Revision: 5951 $ $Date: 2006-04-25 16:09:10 -0600 (Tue, 25 Apr 2006) $
- Author:
- Werner Guttman
-
-
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.exolab.javasource.JComponentizedType
getComponentType, isUseJava50
-
Methods inherited from class org.exolab.javasource.JType
getLocalName, getName, isArray, isPrimitive, setName
-
-
-
-
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.
-
-