Package | Description |
---|---|
org.ecoinformatics.seek.querybuilder |
Modifier and Type | Class and Description |
---|---|
class |
DBWhereCondition
THis class is a model class for a condition of a where clause
|
class |
DBWhereListCellBase
This class is derived from DBSelectTableModelItem so we can pick up some
basic funcationality for getting and setting of the name and criteria etc.
|
class |
DBWhereOperator
A boolean operator class that can "contain" one or more conditions
(DBWhereCondition).
|
Modifier and Type | Field and Description |
---|---|
protected DBWhereIFace |
DBWhereList.mDragOverItem |
protected DBWhereIFace |
DBWhereModel.mRootObj |
protected DBWhereIFace |
DBQueryDef.mWhere |
Modifier and Type | Method and Description |
---|---|
DBWhereIFace |
DBQueryDef.getWhere()
A copy of the where object and all of its children.
|
protected static DBWhereIFace |
DBQueryDefParserEmitter.processWhereNode(DSSchemaIFace aSchema,
org.w3c.dom.Node aNode,
DBWhereOperator aParent)
Processes the where node
|
Modifier and Type | Method and Description |
---|---|
int |
DBWhereModel.add(DBWhereIFace aItem)
Adds an item to the model, the parent attr MUST be set before adding item
|
void |
DBWhereModel.add(DBWhereIFace aItem,
int aInx)
Adds an item to the model at a specified index, the parent attr MUST be
set before adding item
|
void |
DBWhereOperator.addAfter(DBWhereIFace aNewObj,
java.lang.Object aAfterObject)
Add new item "after" the item identified
|
protected void |
DBWherePanel.addNewItem(DBWhereIFace aParent,
DBWhereIFace aItem)
Helper class to add new item to main list
|
void |
DBWhereOperator.append(DBWhereIFace aNewObj)
Adds new item "at the end of the list
|
protected void |
DBWhereModel.buildFromWhereObj(DBWhereIFace aWhereObj)
Build it from the where object
|
protected void |
QBSplitPaneIntermediate.fillHashWithTableNamesForWhere(DBWhereIFace aWhereObj,
java.util.Hashtable aHashTable)
Fill the hastable with the table names
|
protected void |
QBSplitPaneAdvanced.fillHashWithTableNamesForWhere(DBWhereIFace aWhereObj,
java.util.Hashtable aHashTable)
Fill the hastable with the table names
|
void |
DBWhereModel.initialize(DBWhereIFace aWhereObj)
Initialize it by clearing everything and building it from the root where
object
|
protected static boolean |
DBQueryDefParserEmitter.recurseWhere(java.lang.StringBuffer aStrBuf,
DBWhereIFace aWhereObj,
int aLevel)
Recurses through the "tree" of operators and creates a textual rendering
of the operators and conditions
|
void |
DBWhereModel.remove(DBWhereIFace aObj)
Remove item from list, if operator, remove its closure and all the
children too
|
void |
DBWhereOperator.remove(DBWhereIFace aObj)
Removes an item
|
void |
DBQueryDef.setWhere(DBWhereIFace aItem)
Sets the where object
|