Class DecisionTableExpressionRepresentation
- java.lang.Object
-
- org.flowable.ui.modeler.model.decisiontable.DecisionTableExpressionRepresentation
-
public class DecisionTableExpressionRepresentation extends Object
Created by Yvo Swillens
-
-
Field Summary
Fields Modifier and Type Field Description protected booleancomplexExpressionprotected List<String>entriesprotected Stringidprotected Stringlabelprotected booleannewVariableprotected Stringtypestatic StringVARIABLE_TYPE_VARIABLEprotected StringvariableIdprotected StringvariableType
-
Constructor Summary
Constructors Constructor Description DecisionTableExpressionRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getEntries()StringgetId()StringgetLabel()StringgetType()StringgetVariableId()StringgetVariableType()booleanisComplexExpression()booleanisNewVariable()voidsetComplexExpression(boolean complexExpression)voidsetEntries(List<String> entries)voidsetId(String id)voidsetLabel(String label)voidsetNewVariable(boolean newVariable)voidsetType(String type)voidsetVariableId(String variableId)voidsetVariableType(String variableType)
-
-
-
Field Detail
-
VARIABLE_TYPE_VARIABLE
public static final String VARIABLE_TYPE_VARIABLE
- See Also:
- Constant Field Values
-
id
protected String id
-
variableId
protected String variableId
-
variableType
protected String variableType
-
type
protected String type
-
label
protected String label
-
newVariable
protected boolean newVariable
-
complexExpression
protected boolean complexExpression
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getVariableId
public String getVariableId()
-
setVariableId
public void setVariableId(String variableId)
-
getVariableType
public String getVariableType()
-
setVariableType
public void setVariableType(String variableType)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
isNewVariable
public boolean isNewVariable()
-
setNewVariable
public void setNewVariable(boolean newVariable)
-
isComplexExpression
public boolean isComplexExpression()
-
setComplexExpression
public void setComplexExpression(boolean complexExpression)
-
-