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


1   /*
2    * @(#)GenericD.java
3    */
4   
5   package javax.ide.model.java.declaration;
6   
7   import java.util.Collection;
8   
9   /**
10   * Common supertype for Mirror elements that have a name.
11   *
12   * @author Andy Yu
13   */
14  public interface GenericD
15    extends MemberD
16  {
17    /**
18     * Gets the declared type parameters. <p/>
19     *
20     * @return The type variable declarations for the declared type parameters.
21     * <p/>
22     *
23     * Collection of TypeVariableDs.
24     */
25    public Collection getTypeParameters();
26  }