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/HasTypeD.java


1   /*
2    * @(#)HasTypeD.java
3    */
4   
5   package javax.ide.model.java.declaration;
6   
7   /**
8    * Common supertype for Mirror elements that have a type.
9    *
10   * @author Andy Yu
11   */
12  public interface HasTypeD
13    extends Declaration
14  {
15    /**
16     * Gets the type of this element.
17     *
18     * @return The type of this element.
19     */
20    public TypeD getType();
21  }