Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: javax/ide/model/java/declaration/ArrayTypeD.java


1   /*
2    * @(#)ArrayTypeD.java
3    */
4   
5   package javax.ide.model.java.declaration;
6   
7   /**
8    * @author Andy Yu
9    */
10  public interface ArrayTypeD
11    extends TypeD
12  {
13    // ----------------------------------------------------------------------
14  
15    /**
16     * @return The component type of this array. For example, if this
17     * type is "int[]", this will return the type for "int". If this is
18     * not an array type, this returns null (to match the behavior of
19     * java/lang/Class).
20     */
21    public TypeD getComponentType();
22  }