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
-
InspectorPanel(Inspector)
- Constructs a new InspectorPanel on the Inspector
-
getTitle()
- Returns the title of the panel
-
handleEvent(Event)
- Handles list select and deselect events to update the value
text area
-
on(Object)
- Returns an InspectorPanel on the object
-
on(boolean)
- Returns an InspectorPanel on the boolean
-
on(byte)
- Returns an InspectorPanel on the byte
-
on(char)
- Returns an InspectorPanel on the char
-
on(short)
- Returns an InspectorPanel on the short
-
on(int)
- Returns an InspectorPanel on the int
-
on(long)
- Returns an InspectorPanel on the long
-
on(float)
- Returns an InspectorPanel on the float
-
on(double)
- Returns an InspectorPanel on the double
-
pop()
- Inspects the object by which the InspectorPanel came to be
viewing the current Inspector.
-
push()
- Inspects the selected slot, recording the current object and
slot index in expectation of a subsequent pop
-
reset()
- Throw away the history and the target
-
setModel(Inspector)
- View the fields of a Inspector.
-
spawn()
- Returns a new InspectorPanel on the currently selected slot,
or null if no slots is selected.
InspectorPanel
public InspectorPanel(Inspector inspector)
- Constructs a new InspectorPanel on the Inspector
on
public static InspectorPanel on(Object object)
- Returns an InspectorPanel on the object
on
public static InspectorPanel on(boolean object)
- Returns an InspectorPanel on the boolean
on
public static InspectorPanel on(byte object)
- Returns an InspectorPanel on the byte
on
public static InspectorPanel on(char object)
- Returns an InspectorPanel on the char
on
public static InspectorPanel on(short object)
- Returns an InspectorPanel on the short
on
public static InspectorPanel on(int object)
- Returns an InspectorPanel on the int
on
public static InspectorPanel on(long object)
- Returns an InspectorPanel on the long
on
public static InspectorPanel on(float object)
- Returns an InspectorPanel on the float
on
public static InspectorPanel on(double object)
- Returns an InspectorPanel on the double
getTitle
public String getTitle()
- Returns the title of the panel
spawn
public InspectorPanel spawn()
- Returns a new InspectorPanel on the currently selected slot,
or null if no slots is selected.
push
public void push()
- Inspects the selected slot, recording the current object and
slot index in expectation of a subsequent pop
- See Also:
- pop
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
reset
public void reset()
- Throw away the history and the target
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
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