Home | History | Annotate | Download | only in type

Lines Matching defs:type

1 package type;
4 * A representation of an array type.
6 public class ArrayType extends Type {
9 * The type of elements this array holds.
11 private Type componentType;
14 * Constructs a new array type.
15 * @param componentType the type of elements this array holds
17 public ArrayType(Type componentType) {
23 * Gets the component type.
24 * @return the component type
26 public Type getComponentType() {