Package | Description |
---|---|
actorplugin |
Classes supporting the plugin interface for actors.
|
charger |
The top level package for the editor.
|
charger.act |
Classes related to actor operations, activation and graph updating.
|
charger.db |
Classes related to the database access part of CharGer.
|
charger.obj |
Classes for the graph objects themselves.
|
Modifier and Type | Field and Description |
---|---|
private EditFrame |
StockQuotePlugin.owner |
Modifier and Type | Field and Description |
---|---|
static EditFrame |
Global.CurrentEditFrame
The editing window being edited; null if there is none
|
EditFrame |
CanvasPanel.ef
The enclosing editing frame.
|
EditFrame |
EditManager.ef
This class does a lot of communicating with the edit frame that owns it.
|
private EditFrame |
EditToolbar.ef |
EditFrame |
OperManager.ef
Does a lot of communicating with the edit frame that owns it.
|
Modifier and Type | Field and Description |
---|---|
static Hashtable<Integer,EditFrame> |
Global.editFrameList
Stores list of (FrameNum, EditFrame) pairs for referencing
|
Modifier and Type | Method and Description |
---|---|
static EditFrame |
Global.getCurrentEditFrame() |
EditFrame |
EditToolbar.getEditFrame()
Return the owner edit frame.
|
static EditFrame |
Global.getNewestEditFrame()
Returns the newest edit frame created.
|
Modifier and Type | Method and Description |
---|---|
static int |
Global.addEditFrame(EditFrame ef)
Stores an entry for the edit frame
|
BinaryRelationMatchGroupMetrics |
OperManager.matchMasterToOpenGraphs(EditFrame masterForMatch)
Consider the set of open graphs and prepare a match table in HTML.
|
static void |
Global.removeCurrentEditFrame(EditFrame ef)
Shouldn't be used; just use setCurrentEditFrame( null );
|
static void |
Global.removeEditFrame(EditFrame ef)
Removes the entry for the edit frame, and removes the edit frame's graph
from the global list.
|
static void |
Global.setCurrentEditFrame(EditFrame ef)
Marks which edit frame is the active frame.
|
Constructor and Description |
---|
CanvasPanel(EditFrame outerFrame) |
EditManager(EditFrame outerFrame)
Only used by the editframe to instantiate its own manager.
|
EditToolbar(EditFrame ef)
Creates new form EditToolbar
|
OperManager(EditFrame outerFrame) |
Modifier and Type | Field and Description |
---|---|
EditFrame |
GraphUpdater.ownerFrame
The editframe whose canvas panel spawned this updater thread.
|
Constructor and Description |
---|
GraphUpdater(EditFrame ef,
GraphObject go)
Creates an instance of the updater for a given graph object.
|
Modifier and Type | Method and Description |
---|---|
EditFrame |
TextDatabase.setupGraph(int key)
Creates a new editing window with a graph already created for accessing
this database.
|
Modifier and Type | Field and Description |
---|---|
protected EditFrame |
Graph.ownerFrame
The user interface frame that contains this graph.
|
Modifier and Type | Method and Description |
---|---|
EditFrame |
Graph.getOwnerFrame()
Find the user window (if any) associated with this graph.
|
EditFrame |
GraphObject.getOwnerFrame()
Determines the owner edit frame (if any) for a given graph object,
regardless of the level of nesting.
|
Modifier and Type | Method and Description |
---|---|
void |
Graph.setOwnerFrame(EditFrame ef)
Sets the editing window frame that contains this graph.
|