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

Quick Search    Search Deep

Uses of Interface
javax.ide.model.java.declaration.TypeD

Uses of TypeD in javax.ide.model.java.declaration
 

Subinterfaces of TypeD in javax.ide.model.java.declaration
 interface ArrayTypeD
           
 interface ClassD
          Mirrors a primitive, array, class, interface, enum, or annotation type.
 interface TypeVariableD
          Mirrors a type variable.
 interface WildcardTypeD
          Mirrors a wildcard type.
 

Fields in javax.ide.model.java.declaration declared as TypeD
static TypeD[] TypeD.EMPTY_ARRAY
           
 

Methods in javax.ide.model.java.declaration that return TypeD
 TypeD AnnotationD.getAnnotationType()
          Gets the annotation type of this annotation.
 TypeD ArrayTypeD.getComponentType()
           
 TypeD HasTypeD.getType()
          Gets the type of this element.
 TypeD MethodD.getReturnType()
          Gets the return type.
 TypeD TypeD.getType()
          Gets itself as its type.
 TypeD TypeD.getSuperclass()
          Gets this type's superclass.
 

Methods in javax.ide.model.java.declaration with parameters of type TypeD
 boolean TypeD.isAssignableFrom(TypeD subject)
          True if this type is assignable from the subject type.
 MethodD TypeD.getDeclaredConstructor(TypeD[] parameters)
          Gets the matching declared constructor, null if none.
 MethodD TypeD.getDeclaredMethod(java.lang.String name, TypeD[] parameters)
          Gets the matching declared method, null if none.
 MethodD TypeD.getMethod(java.lang.String name, TypeD[] parameters)
          Gets the first matching method, null if none.