Package org.flowable.ui.modeler.model
Class DecisionTableSaveRepresentation
- java.lang.Object
-
- org.flowable.ui.common.model.AbstractRepresentation
-
- org.flowable.ui.modeler.model.DecisionTableSaveRepresentation
-
public class DecisionTableSaveRepresentation extends AbstractRepresentation
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringcommentprotected StringdecisionTableImageBase64protected DecisionTableRepresentationdecisionTableRepresentationprotected booleannewVersionprotected booleanreusable
-
Constructor Summary
Constructors Constructor Description DecisionTableSaveRepresentation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetComment()StringgetDecisionTableImageBase64()DecisionTableRepresentationgetDecisionTableRepresentation()booleanisNewVersion()booleanisReusable()voidsetComment(String comment)voidsetDecisionTableImageBase64(String decisionTableImageBase64)voidsetDecisionTableRepresentation(DecisionTableRepresentation decisionTableRepresentation)voidsetNewVersion(boolean newVersion)voidsetReusable(boolean reusable)
-
-
-
Field Detail
-
reusable
protected boolean reusable
-
newVersion
protected boolean newVersion
-
comment
protected String comment
-
decisionTableImageBase64
protected String decisionTableImageBase64
-
decisionTableRepresentation
protected DecisionTableRepresentation decisionTableRepresentation
-
-
Method Detail
-
isReusable
public boolean isReusable()
-
setReusable
public void setReusable(boolean reusable)
-
isNewVersion
public boolean isNewVersion()
-
setNewVersion
public void setNewVersion(boolean newVersion)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getDecisionTableImageBase64
public String getDecisionTableImageBase64()
-
setDecisionTableImageBase64
public void setDecisionTableImageBase64(String decisionTableImageBase64)
-
getDecisionTableRepresentation
public DecisionTableRepresentation getDecisionTableRepresentation()
-
setDecisionTableRepresentation
public void setDecisionTableRepresentation(DecisionTableRepresentation decisionTableRepresentation)
-
-