Serialized Form
-
Package introspector.controller
-
Package introspector.model
-
Class introspector.model.AbstractNode
class AbstractNode extends Object implements Serializable -
Class introspector.model.ArrayNode
class ArrayNode extends AbstractNode implements Serializable -
Class introspector.model.BuiltinTypeNode
class BuiltinTypeNode extends AbstractNode implements Serializable -
Class introspector.model.CollectionNode
class CollectionNode extends AbstractNode implements Serializable -
Class introspector.model.EnumNode
class EnumNode extends AbstractNode implements Serializable -
Class introspector.model.MapNode
class MapNode extends AbstractNode implements Serializable -
Class introspector.model.ObjectNode
class ObjectNode extends AbstractNode implements Serializable-
Serialized Fields
-
getChildrenCache
List<Node> getChildrenCache
The cached value for getChildren. Optimization to avoid computing getChildren with reflection any time it is invoked; -
hasBeenGetChildrenCached
boolean hasBeenGetChildrenCached
Indicates if the isChildren method has been previously called, and hence cached. -
hasBeenIsLeafCached
boolean hasBeenIsLeafCached
Indicates if the isLeaf method has been previously called, and hence cached. -
isLeafCache
boolean isLeafCache
The cached value for isLeaf. Optimization to avoid computing isLeaf with reflection any time it is invoked;
-
-
-
-
Package introspector.model.traverse
-
Package introspector.view
-
Class introspector.view.IntrospectorView
class IntrospectorView extends JFrame implements Serializable-
Serialized Fields
-
horizontalSplitPanes
List<JSplitPane> horizontalSplitPanes
List of horizontal split panes in the view. Their height should be modified every time a new tree is added. -
labelStatus
JLabel labelStatus
The label that shows the status of the application (where messages are shown) -
popupMenu
JPopupMenu popupMenu
Popup menu used over the JTree -
trees
List<JTree> trees
The tree view
-
-
-
Class introspector.view.ViewHelper
class ViewHelper extends JFrame implements Serializable
-