|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SymbolTable | |
---|---|
com.jstatcom.engine | Abstract implementation of the engine communication as well as the procedure call. |
com.jstatcom.model | Data model and Symbol Management systems. |
com.jstatcom.model.control | Symbol control system. |
com.jstatcom.table | Special tables for some data types. |
Uses of SymbolTable in com.jstatcom.engine |
---|
Methods in com.jstatcom.engine that return SymbolTable | |
---|---|
SymbolTable |
PCall.getSymbolTable()
Gets the currently used symbol table. |
Methods in com.jstatcom.engine with parameters of type SymbolTable | |
---|---|
void |
PCall.setSymbolTable(SymbolTable newSymbolTable)
Sets the symbol table to access data objects. |
Uses of SymbolTable in com.jstatcom.model |
---|
Fields in com.jstatcom.model with type parameters of type SymbolTable | |
---|---|
static javolution.xml.XmlFormat<SymbolTable> |
SymbolTable.SymbolTable_XML
XML format field for (de)serialization. |
Methods in com.jstatcom.model that return SymbolTable | |
---|---|
SymbolTable |
SymbolTable.getParentTable()
Gets the symbol table that is referenced as a parent of this table. |
abstract SymbolTable |
Scope.getSymbolTable(java.awt.Component comp)
Gets the symbol table according to this scope from the component hierarchy. |
SymbolTable |
SymbolScope.global()
Gets the top level symbol table. |
SymbolTable |
ModelPanel.global()
Gets the global symbol table from the closest parent component that implements SymbolScope . |
SymbolTable |
ModelFrame.global()
Gets the global symbol table for this internal frame and all child ModelPanel instances. |
SymbolTable |
SymbolScope.local()
Gets the local level symbol table that is only visible to this and all child components that implement SymbolScope . |
SymbolTable |
ModelPanel.local()
Gets the local symbol table that is only visible to this panel. |
SymbolTable |
ModelFrame.local()
Gets the local symbol table, which is identical with the global table for a ModelFrame . |
SymbolTable |
SymbolScope.upper()
Gets the next higher level symbol table. |
SymbolTable |
ModelPanel.upper()
Gets the local symbol table from the closest parent component that implements SymbolScope . |
SymbolTable |
ModelFrame.upper()
Gets the upper symbol table, which is identical with the global table for a ModelFrame . |
Methods in com.jstatcom.model with parameters of type SymbolTable | |
---|---|
void |
SymbolTable.setSymbolTable(SymbolTable table)
Sets the contents of table to this symbol table by
applying the following rules:
if a symbol is only part of table but not of
this , then a new symbol with the same name is created in
this table and the reference to the underlying JSCData
instance is copied
if table and this contain symbols with
the same name, then the reference to the underlying JSCData
instance is copied from the symbol of the argument table to this table
all symbols that are part of this table but not of the argument
table are left untouched
This operation does not change the argument symbol table, but by copying
references its symbols might be affected by operations on this table
afterwards. |
Constructors in com.jstatcom.model with parameters of type SymbolTable | |
---|---|
SymbolTable(java.lang.String name,
SymbolTable parentTable)
Creates an empty symbol table with name and a parent
table. |
|
SymbolTable(java.lang.String name,
SymbolTable parentTable,
boolean addToTree)
Creates an empty symbol table with name and a parent
table. |
Uses of SymbolTable in com.jstatcom.model.control |
---|
Fields in com.jstatcom.model.control declared as SymbolTable | |
---|---|
SymbolTable |
SymbolTableTreeNode.symbolTable
SymbolTable represented by this tree node. |
Methods in com.jstatcom.model.control with parameters of type SymbolTable | |
---|---|
void |
SymbolTree.addSymbolTable(SymbolTable symbolTable)
Adds the symbol table to this tree. |
Constructors in com.jstatcom.model.control with parameters of type SymbolTable | |
---|---|
SymbolTableTreeNode(SymbolTable symbolTable,
javax.swing.tree.DefaultTreeModel symbolTreeModel)
Creates a tree node for a symbol. |
Uses of SymbolTable in com.jstatcom.table |
---|
Methods in com.jstatcom.table that return SymbolTable | |
---|---|
SymbolTable |
JSCDataTableScrollPane.getSymbolTable()
Gets the symbol table that has been set for row and column header. |
SymbolTable |
JSCAbstractDataTable.getSymbolTable()
Gets the explicitely set symbol table used by this table to retrieve symbols by their name. |
Methods in com.jstatcom.table with parameters of type SymbolTable | |
---|---|
void |
JSCSArrayTable.setModelForSymbolName(SymbolTable table,
java.lang.String name)
|
void |
JSCNArrayTable.setModelForSymbolName(SymbolTable table,
java.lang.String name)
|
abstract void |
JSCAbstractDataTable.setModelForSymbolName(SymbolTable table,
java.lang.String name)
Sets the table model according to the symbol defined by table and name . |
void |
JSCDataTableScrollPane.setSymbolTable(SymbolTable table)
Sets the symbol table used for row and column header data. |
void |
JSCAbstractDataTable.setSymbolTable(SymbolTable table)
Sets the symbol table used by this table to retrieve symbols by their name and the corresponding type for the table. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |