Package jadex.rules.rulesystem.rules
Class AndCondition
- java.lang.Object
-
- jadex.rules.rulesystem.rules.ComplexCondition
-
- jadex.rules.rulesystem.rules.AndCondition
-
- All Implemented Interfaces:
ICondition
public class AndCondition extends ComplexCondition
Condition for and-ing contained conditions.
-
-
Field Summary
-
Fields inherited from class jadex.rules.rulesystem.rules.ComplexCondition
conditions
-
-
Constructor Summary
Constructors Constructor Description AndCondition()
Create a new and condition.AndCondition(ICondition[] conditions)
Create a new and condition.AndCondition(java.util.List conditions)
Create a new and condition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
Get the string representation.-
Methods inherited from class jadex.rules.rulesystem.rules.ComplexCondition
addCondition, getConditions, getVariables
-
-
-
-
Constructor Detail
-
AndCondition
public AndCondition()
Create a new and condition.
-
AndCondition
public AndCondition(java.util.List conditions)
Create a new and condition.
-
AndCondition
public AndCondition(ICondition[] conditions)
Create a new and condition.
-
-