01: package javaparser;
02:
03: /** Parent for types and anonymous classes, used in completion for "this."
04: */
05: publicinterface Type {
06: String getTypeName();
07:
08: /** for example Point in Point2D
09: * null if none
10: */
11: // String getEnclosingType();
12: }