public interface DBWhereIFace
Modifier and Type | Method and Description |
---|---|
java.awt.Rectangle |
getBounds()
Its bounds of where it is being rendered
|
int |
getDepth()
Return its depth in the tree
|
java.lang.String |
getName()
The objects name
|
DBWhereOperator |
getParent()
Return its parent object
|
boolean |
isDragOver()
Returns if it is being dragged over.
|
boolean |
isOperator()
Return whether it is an operator or not
|
void |
setBounds(java.awt.Rectangle aRect)
Sets it bounds of where it is being rendered
|
void |
setDepth(int aDepth)
Sets the depth in the tree
|
void |
setDragOver(boolean aIsOver)
Sets whether it is being dragged over
|
java.lang.String |
toString(boolean aUseSymbols)
Returns string
|
java.lang.String getName()
DBWhereOperator getParent()
boolean isOperator()
int getDepth()
void setDepth(int aDepth)
aDepth
- the depthvoid setBounds(java.awt.Rectangle aRect)
aRect
- the boundsjava.awt.Rectangle getBounds()
void setDragOver(boolean aIsOver)
aIsOver
- true if the mouse is over the objectboolean isDragOver()
java.lang.String toString(boolean aUseSymbols)
aUseSymbols
- Generate string using symbols instead of text for conditions
etc.