Uses of Class
com.jaxfront.core.rule.ConditionExpression

Packages that use ConditionExpression
com.jaxfront.core.error   
com.jaxfront.core.rule   
com.jaxfront.core.schema   
com.jaxfront.core.type   
 

Uses of ConditionExpression in com.jaxfront.core.error
 

Methods in com.jaxfront.core.error that return ConditionExpression
 ConditionExpression ConditionalError.getCondition()
          Returns the condition that led to this Validation Error.
 

Constructors in com.jaxfront.core.error with parameters of type ConditionExpression
ConditionalError(Rule rule, ConditionExpression condition, Type source)
           
ConditionalError(Rule rule, ConditionExpression condition, Type source, java.lang.String messageText, boolean needingUserAcceptance, boolean showDialog, boolean isMandatoryException, java.lang.String classification)
           
 

Uses of ConditionExpression in com.jaxfront.core.rule
 

Methods in com.jaxfront.core.rule that return ConditionExpression
 ConditionExpression RuleImpl.getCondition()
           
 ConditionExpression Rule.getCondition()
          Returns the defined condition for this rule.
static ConditionExpression ConditionExpression.NO_CONDITION()
           
 

Methods in com.jaxfront.core.rule with parameters of type ConditionExpression
static boolean ScopeChecker.doesConcern(java.lang.String scope, Type source, Type checkType, ConditionExpression condition, boolean inclActionTargets, java.util.List actions)
          Indicates if the passing type does concern this rule.
 void RuleImpl.setCondition(ConditionExpression condition)
          Sets the condition of this rule.
 void Rule.setCondition(ConditionExpression condition)
          Sets the condition of this rule.
 

Uses of ConditionExpression in com.jaxfront.core.schema
 

Methods in com.jaxfront.core.schema that return ConditionExpression
 ConditionExpression ValidationException.getCondition()
          Returns the underlying condition or null;
 

Constructors in com.jaxfront.core.schema with parameters of type ConditionExpression
ValidationException(ConditionExpression condition)
          Creates a ValidationException based on a Condition.
 

Uses of ConditionExpression in com.jaxfront.core.type
 

Methods in com.jaxfront.core.type with parameters of type ConditionExpression
 void ErrorController.removeConditionalError(Rule rule, ConditionExpression condition, Type sourceType)