01: package javaparser;
02:
03: /** Parent for types and anonymous classes, used in completion for "this.".
04: * Used by: AnonymousType
05: */
06: public interface TypeInterface {
07: // as declared in the source.
08: String getTypeSimpleName();
09:
10: // ??
11: //String getJavaName();
12:
13: /** for example Point in Point2D
14: * null if none
15: */
16: // String getEnclosingType();
17: }
|