| org.netbeans.modules.sql.framework.model.SQLOperator
SQLOperator | public interface SQLOperator extends SQLConnectableObject(Code) | | Common interface for generic operator and predicate.
author: Jonathan Giron author: Ahimanikya Satapathy version: $Revision$ |
ATTR_CUSTOM_OPERATOR | final public static String ATTR_CUSTOM_OPERATOR(Code) | | |
ATTR_CUSTOM_OPERATOR_NAME | final public static String ATTR_CUSTOM_OPERATOR_NAME(Code) | | |
ATTR_SCRIPTREF | final public static String ATTR_SCRIPTREF(Code) | | |
getCustomOperatorName | public String getCustomOperatorName()(Code) | | Returns name of the User specific operator.
|
getOperatorDefinition | public SQLOperatorDefinition getOperatorDefinition()(Code) | | Get the script of this operator.
Return script of this operator. |
getOperatorType | public String getOperatorType()(Code) | | Gets canonical operator type, e.g., "concat", "tolowercase", etc..
canonical operator name |
isCustomOperator | public boolean isCustomOperator()(Code) | | Returns True if operator represents user specific operator else false.
|
isShowParenthesis | public boolean isShowParenthesis()(Code) | | Indicates whether open and close parentheses should be appended upon evaluation of
this operator.
true if parentheses are to be appended, false otherwise |
setArguments | public void setArguments(List args) throws BaseException(Code) | | |
setCustomOperator | public void setCustomOperator(boolean customOperator)(Code) | | Sets whether this object represents user specific operator.
Parameters: customOperator - |
setCustomOperatorName | public void setCustomOperatorName(String customOperatorName)(Code) | | Sets the name of this user specific operator. Which is also used to evaluate.
Parameters: customOperatorName - |
setDbSpecificOperator | public void setDbSpecificOperator(String dbName) throws BaseException(Code) | | |
setOperatorType | public void setOperatorType(String opName) throws BaseException(Code) | | sets canonical operator type, e.g., "concat", "tolowercase", etc..
Parameters: opName - canonical operator name throws: com.sun.sql.framework.exception.BaseException - |
setShowParenthesis | public void setShowParenthesis(boolean show)(Code) | | Sets whether parentheses needs to be appended upon evaluation of this operator.
Parameters: show - true if parentheses are to be appended, false otherwise |
|
|