| java.lang.Object org.netbeans.modules.sql.framework.model.utils.ConditionUtil
ConditionUtil | public class ConditionUtil (Code) | | author: Ritesh Adval |
parseCondition | public static SQLObject parseCondition(String text, SQLDefinition def) throws Exception(Code) | | Parses into a SQLObject the given condition string using information from the given
SQLDefinition.
Parameters: text - condition text to be parsed Parameters: def - SQLDefinition SQLObject modeling the parsed condition string in text throws: Exception - if error occurs during parsing |
populateCondition | public static void populateCondition(SQLCondition condition, SQLDefinition def, String text) throws Exception(Code) | | Populates the given SQLCondition object using information from the given condition
string and SQLDefinition.
Parameters: condition - SQLCondition object to be populated Parameters: def - SQLDefinition Parameters: text - condition text to be parsed throws: Exception - if error occurs during parsing or object population |
populateCondition | public static void populateCondition(SQLCondition condition, SQLObject rootObj) throws Exception(Code) | | Populates the given SQLCondition object using information from the given SQLObject
root.
Parameters: condition - SQLCondition object to be populated Parameters: rootObj - root expression object throws: Exception - if error occurs during parsing or object population |
|
|