Package org.jbpm.designer.client.shared
Class AssignmentRow
- java.lang.Object
-
- org.jbpm.designer.client.shared.AssignmentRow
-
public class AssignmentRow extends Object
Class which is bound to rows in the DataIOEditor
-
-
Constructor Summary
Constructors Constructor Description AssignmentRow()
AssignmentRow(String name, Variable.VariableType variableType, String dataType, String customDataType, String processVar, String constant)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getConstant()
String
getCustomDataType()
String
getDataType()
long
getId()
String
getName()
String
getProcessVar()
Variable.VariableType
getVariableType()
int
hashCode()
boolean
isComplete()
void
setConstant(String constant)
void
setCustomDataType(String customDataType)
void
setDataType(String dataType)
void
setId(long id)
void
setName(String name)
void
setProcessVar(String processVar)
void
setVariableType(Variable.VariableType variableType)
String
toString()
-
-
-
Method Detail
-
getId
public long getId()
-
setId
public void setId(long id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getVariableType
public Variable.VariableType getVariableType()
-
setVariableType
public void setVariableType(Variable.VariableType variableType)
-
getDataType
public String getDataType()
-
setDataType
public void setDataType(String dataType)
-
getCustomDataType
public String getCustomDataType()
-
setCustomDataType
public void setCustomDataType(String customDataType)
-
getProcessVar
public String getProcessVar()
-
setProcessVar
public void setProcessVar(String processVar)
-
getConstant
public String getConstant()
-
setConstant
public void setConstant(String constant)
-
isComplete
public boolean isComplete()
-
-