Class dstc.kalimantan.inspect.InspectorPanel
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class dstc.kalimantan.inspect.InspectorPanel

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Panel
                           |
                           +----dstc.kalimantan.inspect.InspectorPanel

public class InspectorPanel
extends Panel
Constructs a Panel for graphically displaying an Inspector
See Also:
Inspector, InspectorFrame

Constructor Index

 o InspectorPanel(Inspector)
Constructs a new InspectorPanel on the Inspector

Method Index

 o getTitle()
Returns the title of the panel
 o handleEvent(Event)
Handles list select and deselect events to update the value text area
 o on(Object)
Returns an InspectorPanel on the object
 o on(boolean)
Returns an InspectorPanel on the boolean
 o on(byte)
Returns an InspectorPanel on the byte
 o on(char)
Returns an InspectorPanel on the char
 o on(short)
Returns an InspectorPanel on the short
 o on(int)
Returns an InspectorPanel on the int
 o on(long)
Returns an InspectorPanel on the long
 o on(float)
Returns an InspectorPanel on the float
 o on(double)
Returns an InspectorPanel on the double
 o pop()
Inspects the object by which the InspectorPanel came to be viewing the current Inspector.
 o push()
Inspects the selected slot, recording the current object and slot index in expectation of a subsequent pop
 o reset()
Throw away the history and the target
 o setModel(Inspector)
View the fields of a Inspector.
 o spawn()
Returns a new InspectorPanel on the currently selected slot, or null if no slots is selected.

Constructors

 o InspectorPanel
  public InspectorPanel(Inspector inspector)
Constructs a new InspectorPanel on the Inspector

Methods

 o on
  public static InspectorPanel on(Object object)
Returns an InspectorPanel on the object
 o on
  public static InspectorPanel on(boolean object)
Returns an InspectorPanel on the boolean
 o on
  public static InspectorPanel on(byte object)
Returns an InspectorPanel on the byte
 o on
  public static InspectorPanel on(char object)
Returns an InspectorPanel on the char
 o on
  public static InspectorPanel on(short object)
Returns an InspectorPanel on the short
 o on
  public static InspectorPanel on(int object)
Returns an InspectorPanel on the int
 o on
  public static InspectorPanel on(long object)
Returns an InspectorPanel on the long
 o on
  public static InspectorPanel on(float object)
Returns an InspectorPanel on the float
 o on
  public static InspectorPanel on(double object)
Returns an InspectorPanel on the double
 o getTitle
  public String getTitle()
Returns the title of the panel
 o spawn
  public InspectorPanel spawn()
Returns a new InspectorPanel on the currently selected slot, or null if no slots is selected.
 o push
  public void push()
Inspects the selected slot, recording the current object and slot index in expectation of a subsequent pop
See Also:
pop
 o pop
  public void pop()
Inspects the object by which the InspectorPanel came to be viewing the current Inspector. Similar to the "back" button of a web browser
See Also:
push
 o reset
  public void reset()
Throw away the history and the target
 o setModel
  public void setModel(Inspector inspector)
View the fields of a Inspector. Does not record what model was previously being viewed
See Also:
pop, push
 o handleEvent
  public boolean handleEvent(Event event)
Handles list select and deselect events to update the value text area
Overrides:
handleEvent in class Component

All Packages  Class Hierarchy  This Package  Previous  Next  Index