Uses of Package
introspector.model
Packages that use introspector.model
Package
Description
The introspector package offers the Introspector tool as an API through its Introspector utility class.
The controller package handles the actions generated by the view, calls the model and shows the results
back to the view (MVC pattern).
The model package implements the model responsibility in the MVC pattern.
The traverse package provides different functionalities to traverse the object structure of the
model as a tree.
-
Classes in introspector.model used by introspector
-
Classes in introspector.model used by introspector.controllerClassDescriptionThe interface Node represents the nodes in the tree that models the structure of the program at runtime.
-
Classes in introspector.model used by introspector.modelClassDescriptionThe abstract Node provides the default implementation of the Node interface.ArrayNode provides a Node implementation to represent any value whose type is an array.Dummy class for testing purposes.BuiltinTypeNode provides a Node implementation to represent any value whose type is built-in.CollectionNode provides a Node implementation to represent any value whose type is a java.util.Collection.Model object that represents a tree.MapNode provides a Node implementation to represent any value whose type is a java.util.Map.Dummy class for testing purposes.The interface Node represents the nodes in the tree that models the structure of the program at runtime.ObjectNode provides a Node implementation to represent any object whose type is neither built-in nor a collection.Dummy class for testing purposes.
-
Classes in introspector.model used by introspector.model.traverseClassDescriptionThe interface Node represents the nodes in the tree that models the structure of the program at runtime.