Package org.jbpm.designer.client.popup
Interface AssignmentListItemWidgetView
-
- All Superinterfaces:
org.jboss.errai.ui.client.widget.HasModel<AssignmentRow>
- All Known Implementing Classes:
AssignmentListItemWidgetViewImpl
public interface AssignmentListItemWidgetView extends org.jboss.errai.ui.client.widget.HasModel<AssignmentRow>
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONSTANT_PROMPT
static String
CUSTOM_PROMPT
static String
ENTER_CONSTANT_PROMPT
static String
ENTER_TYPE_PROMPT
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getConstant()
String
getCustomDataType()
String
getDataType()
String
getProcessVar()
Variable.VariableType
getVariableType()
void
init()
boolean
isDuplicateName(String name)
void
setAllowDuplicateNames(boolean allowDuplicateNames, String duplicateNameErrorMessage)
void
setConstant(String constant)
void
setCustomAssignmentsProperties(Map<String,List<String>> customAssignmentsProperties)
void
setCustomDataType(String customDataType)
void
setDataType(String dataType)
void
setDataTypes(ListBoxValues dataTypeListBoxValues)
void
setDisallowedNames(Set<String> disallowedNames, String disallowedNameErrorMessage)
void
setParentWidget(ActivityDataIOEditorWidget parentWidget)
void
setProcessVar(String processVar)
void
setProcessVariables(ListBoxValues processVarListBoxValues)
void
setShowConstants(boolean showConstants)
-
-
-
Method Detail
-
init
void init()
-
setParentWidget
void setParentWidget(ActivityDataIOEditorWidget parentWidget)
-
setDataTypes
void setDataTypes(ListBoxValues dataTypeListBoxValues)
-
setProcessVariables
void setProcessVariables(ListBoxValues processVarListBoxValues)
-
setShowConstants
void setShowConstants(boolean showConstants)
-
setDisallowedNames
void setDisallowedNames(Set<String> disallowedNames, String disallowedNameErrorMessage)
-
setCustomAssignmentsProperties
void setCustomAssignmentsProperties(Map<String,List<String>> customAssignmentsProperties)
-
setAllowDuplicateNames
void setAllowDuplicateNames(boolean allowDuplicateNames, String duplicateNameErrorMessage)
-
isDuplicateName
boolean isDuplicateName(String name)
-
getVariableType
Variable.VariableType getVariableType()
-
getDataType
String getDataType()
-
setDataType
void setDataType(String dataType)
-
getProcessVar
String getProcessVar()
-
setProcessVar
void setProcessVar(String processVar)
-
getCustomDataType
String getCustomDataType()
-
setCustomDataType
void setCustomDataType(String customDataType)
-
getConstant
String getConstant()
-
setConstant
void setConstant(String constant)
-
-