mitoolkit.core
Interface ClassClosureConstants

All Known Implementing Classes:
ClassInspector, MiServer, MiToolkitDeployer, ObjectInspector, SerializationHandler

public interface ClassClosureConstants


Field Summary
static int DECLARED
          The class closure will contain only the root class and the classes declared in its members.
static int DECLAREDCLOSURE
          The class closure will contain the root class, its declared classes, their declared classes, and so on recursively.
static int FULLCLOSURE
          The class closure will contain the root class, all its referenced classes, all their referenced classes, and so on recursively.
static int NONE
           
static int REFERENCED
          The class closure will contain the root class, the classes declared in its members, the superclass, and any class referenced inside the class' methods.
static int ROOT
          The class closure will contain only the root class.
 

Field Detail

NONE

public static final int NONE
See Also:
Constant Field Values

ROOT

public static final int ROOT
The class closure will contain only the root class.

See Also:
Constant Field Values

DECLARED

public static final int DECLARED
The class closure will contain only the root class and the classes declared in its members.

See Also:
Constant Field Values

REFERENCED

public static final int REFERENCED
The class closure will contain the root class, the classes declared in its members, the superclass, and any class referenced inside the class' methods.

See Also:
Constant Field Values

DECLAREDCLOSURE

public static final int DECLAREDCLOSURE
The class closure will contain the root class, its declared classes, their declared classes, and so on recursively.

See Also:
Constant Field Values

FULLCLOSURE

public static final int FULLCLOSURE
The class closure will contain the root class, all its referenced classes, all their referenced classes, and so on recursively.

See Also:
Constant Field Values