Class ActionFieldList
- java.lang.Object
-
- org.drools.workbench.models.datamodel.rule.ActionFieldList
-
- All Implemented Interfaces:
IAction
- Direct Known Subclasses:
ActionInsertFact,ActionSetField
public abstract class ActionFieldList extends Object implements IAction
This class is the parent for field setting or assertion actions. Contains the list of fields and their values to be set.
-
-
Constructor Summary
Constructors Constructor Description ActionFieldList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddFieldValue(ActionFieldValue val)booleanequals(Object o)ActionFieldValue[]getFieldValues()inthashCode()voidremoveField(int idx)voidsetFieldValues(ActionFieldValue[] actionFieldValues)
-
-
-
Method Detail
-
getFieldValues
public ActionFieldValue[] getFieldValues()
-
setFieldValues
public void setFieldValues(ActionFieldValue[] actionFieldValues)
-
removeField
public void removeField(int idx)
-
addFieldValue
public void addFieldValue(ActionFieldValue val)
-
-