Uses of Interface
org.wsmo.service.rule.Condition

Packages that use Condition
org.deri.wsmo4j.choreography.rule   
org.deri.wsmo4j.orchestration.rule   
org.deri.wsmo4j.rule   
org.wsmo.factory   
org.wsmo.service.choreography.rule   
org.wsmo.service.orchestration.rule   
 

Uses of Condition in org.deri.wsmo4j.choreography.rule
 

Fields in org.deri.wsmo4j.choreography.rule declared as Condition
protected  Condition AbstractTransitionRuleRI.condition
           
 

Methods in org.deri.wsmo4j.choreography.rule that return Condition
 Condition AbstractTransitionRuleRI.getCondition()
           
 

Methods in org.deri.wsmo4j.choreography.rule with parameters of type Condition
 void AbstractTransitionRuleRI.setCondition(Condition condition)
           
 

Constructors in org.deri.wsmo4j.choreography.rule with parameters of type Condition
AbstractQuantifiedRuleRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<ChoreographyRule> rules)
           
ChooseRI(Set<org.omwg.ontology.Variable> variables, Condition condition, ChoreographyRule rule)
          Constructor for a choose rule
ChooseRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<ChoreographyRule> rules)
          Constructor for a choose rule
ChooseRI(org.omwg.ontology.Variable variable, Condition condition, ChoreographyRule rule)
          Constructor for a choose rule.
ChooseRI(org.omwg.ontology.Variable variable, Condition condition, Set<ChoreographyRule> rules)
          Constructor for a choose rule.
ForAllRI(Set<org.omwg.ontology.Variable> variables, Condition condition, ChoreographyRule rule)
          Constructor for a forall rule
ForAllRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<ChoreographyRule> rules)
          Constructor for a choose rule
ForAllRI(org.omwg.ontology.Variable variable, Condition condition, ChoreographyRule rule)
          Constructor for a forall rule.
ForAllRI(org.omwg.ontology.Variable variable, Condition condition, Set<ChoreographyRule> rules)
          Constructor for a choose rule.
IfThenRI(Condition condition, ChoreographyRule rule)
           
IfThenRI(Condition condition, Set<ChoreographyRule> rules)
           
 

Uses of Condition in org.deri.wsmo4j.orchestration.rule
 

Fields in org.deri.wsmo4j.orchestration.rule declared as Condition
protected  Condition AbstractTransitionRuleRI.condition
           
 

Methods in org.deri.wsmo4j.orchestration.rule that return Condition
 Condition AbstractTransitionRuleRI.getCondition()
           
 

Methods in org.deri.wsmo4j.orchestration.rule with parameters of type Condition
 void AbstractTransitionRuleRI.setCondition(Condition condition)
           
 

Constructors in org.deri.wsmo4j.orchestration.rule with parameters of type Condition
AbstractQuantifiedRuleRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<Rule> rules)
           
ChooseRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Rule rule)
          Constructor for a choose rule
ChooseRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<Rule> rules)
          Constructor for a choose rule
ChooseRI(org.omwg.ontology.Variable variable, Condition condition, Rule rule)
          Constructor for a choose rule.
ChooseRI(org.omwg.ontology.Variable variable, Condition condition, Set<Rule> rules)
          Constructor for a choose rule.
ForAllRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Rule rule)
          Constructor for a forall rule
ForAllRI(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<Rule> rules)
          Constructor for a choose rule
ForAllRI(org.omwg.ontology.Variable variable, Condition condition, Rule rule)
          Constructor for a forall rule.
ForAllRI(org.omwg.ontology.Variable variable, Condition condition, Set<Rule> rules)
          Constructor for a choose rule.
IfThenRI(Condition condition, Rule rule)
           
IfThenRI(Condition condition, Set<Rule> rules)
           
 

Uses of Condition in org.deri.wsmo4j.rule
 

Classes in org.deri.wsmo4j.rule that implement Condition
 class ConditionRI
          Reference Implementation for Condition
 

Uses of Condition in org.wsmo.factory
 

Methods in org.wsmo.factory that return Condition
 Condition OrchestrationFactory.TransitionRules.createConditionFromLogicalExpression(org.omwg.logicalexpression.LogicalExpression e)
           
 Condition ChoreographyFactory.TransitionRules.createConditionFromLogicalExpression(org.omwg.logicalexpression.LogicalExpression e)
           
 

Methods in org.wsmo.factory with parameters of type Condition
 ChoreographyChoose ChoreographyFactory.TransitionRules.createChoose(Set<org.omwg.ontology.Variable> variables, Condition condition, ChoreographyRule rule)
           
 OrchestrationChoose OrchestrationFactory.TransitionRules.createChoose(Set<org.omwg.ontology.Variable> variables, Condition condition, Rule rule)
           
 ChoreographyChoose ChoreographyFactory.TransitionRules.createChoose(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<ChoreographyRule> rules)
           
 OrchestrationChoose OrchestrationFactory.TransitionRules.createChoose(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<Rule> rules)
           
 ChoreographyChoose ChoreographyFactory.TransitionRules.createChoose(org.omwg.ontology.Variable variable, Condition condition, ChoreographyRule rule)
           
 OrchestrationChoose OrchestrationFactory.TransitionRules.createChoose(org.omwg.ontology.Variable variable, Condition condition, Rule rule)
           
 ChoreographyChoose ChoreographyFactory.TransitionRules.createChoose(org.omwg.ontology.Variable variable, Condition condition, Set<ChoreographyRule> rules)
           
 OrchestrationChoose OrchestrationFactory.TransitionRules.createChoose(org.omwg.ontology.Variable variable, Condition condition, Set<Rule> rules)
           
 ChoreographyForAll ChoreographyFactory.TransitionRules.createForAll(Set<org.omwg.ontology.Variable> variables, Condition condition, ChoreographyRule rule)
           
 OrchestrationForAll OrchestrationFactory.TransitionRules.createForAll(Set<org.omwg.ontology.Variable> variables, Condition condition, Rule rule)
           
 ChoreographyForAll ChoreographyFactory.TransitionRules.createForAll(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<ChoreographyRule> rules)
           
 OrchestrationForAll OrchestrationFactory.TransitionRules.createForAll(Set<org.omwg.ontology.Variable> variables, Condition condition, Set<Rule> rules)
           
 ChoreographyForAll ChoreographyFactory.TransitionRules.createForAll(org.omwg.ontology.Variable variable, Condition condition, ChoreographyRule rule)
           
 OrchestrationForAll OrchestrationFactory.TransitionRules.createForAll(org.omwg.ontology.Variable variable, Condition condition, Rule rule)
           
 ChoreographyForAll ChoreographyFactory.TransitionRules.createForAll(org.omwg.ontology.Variable variable, Condition condition, Set<ChoreographyRule> rules)
           
 OrchestrationForAll OrchestrationFactory.TransitionRules.createForAll(org.omwg.ontology.Variable variable, Condition condition, Set<Rule> rules)
           
 ChoreographyIfThen ChoreographyFactory.TransitionRules.createIfThen(Condition expression, ChoreographyRule rule)
           
 OrchestrationIfThen OrchestrationFactory.TransitionRules.createIfThen(Condition expression, Rule rule)
           
 ChoreographyIfThen ChoreographyFactory.TransitionRules.createIfThen(Condition expression, Set<ChoreographyRule> rules)
           
 OrchestrationIfThen OrchestrationFactory.TransitionRules.createIfThen(Condition expression, Set<Rule> rules)
           
 

Uses of Condition in org.wsmo.service.choreography.rule
 

Methods in org.wsmo.service.choreography.rule that return Condition
 Condition ChoreographyTransitionRule.getCondition()
          Returns the Logical Expression which defines the condition of the rule.
 

Methods in org.wsmo.service.choreography.rule with parameters of type Condition
 void ChoreographyTransitionRule.setCondition(Condition condition)
          Sets the Conditon of the rule.
 

Uses of Condition in org.wsmo.service.orchestration.rule
 

Methods in org.wsmo.service.orchestration.rule that return Condition
 Condition OrchestrationTransitionRule.getCondition()
          Returns the Logical Expression which defines the condition of the rule.
 

Methods in org.wsmo.service.orchestration.rule with parameters of type Condition
 void OrchestrationTransitionRule.setCondition(Condition condition)
          Sets the Conditon of the rule.
 



Copyright © 2004-2008 Ontotext Lab.. All Rights Reserved.