Package org.jbpm.designer.client.popup
Class ActivityDataIOEditorWidget
- java.lang.Object
-
- org.jbpm.designer.client.popup.ActivityDataIOEditorWidget
-
- All Implemented Interfaces:
ActivityDataIOEditorWidgetView.Presenter
@Dependent public class ActivityDataIOEditorWidget extends Object implements ActivityDataIOEditorWidgetView.Presenter
-
-
Constructor Summary
Constructors Constructor Description ActivityDataIOEditorWidget()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<AssignmentRow>
getData()
Variable.VariableType
getVariableType()
com.google.gwt.user.client.ui.Widget
getWidget()
void
handleAddClick()
void
init()
boolean
isDuplicateName(String name)
Tests whether a Row name occurs more than once in the list of rowsvoid
removeAssignment(AssignmentRow assignmentRow)
void
setAllowDuplicateNames(boolean allowDuplicateNames, String duplicateNameErrorMessage)
void
setCustomAssignmentsProperties(Map<String,List<String>> customAssignmentsProperties)
void
setData(List<AssignmentRow> assignmentRows)
void
setDataTypes(ListBoxValues dataTypeListBoxValues)
void
setDisallowedNames(Set<String> disallowedNames, String disallowedNameErrorMessage)
void
setIsSingleVar(boolean isSingleVar)
void
setIsVisible(boolean visible)
void
setProcessVariables(ListBoxValues processVarListBoxValues)
void
setVariableType(Variable.VariableType variableType)
-
-
-
Method Detail
-
init
@PostConstruct public void init()
-
handleAddClick
public void handleAddClick()
- Specified by:
handleAddClick
in interfaceActivityDataIOEditorWidgetView.Presenter
-
setIsSingleVar
public void setIsSingleVar(boolean isSingleVar)
-
setVariableType
public void setVariableType(Variable.VariableType variableType)
-
setAllowDuplicateNames
public void setAllowDuplicateNames(boolean allowDuplicateNames, String duplicateNameErrorMessage)
-
removeAssignment
public void removeAssignment(AssignmentRow assignmentRow)
-
setData
public void setData(List<AssignmentRow> assignmentRows)
-
getData
public List<AssignmentRow> getData()
-
getVariableType
public Variable.VariableType getVariableType()
-
setDataTypes
public void setDataTypes(ListBoxValues dataTypeListBoxValues)
-
setProcessVariables
public void setProcessVariables(ListBoxValues processVarListBoxValues)
-
setDisallowedNames
public void setDisallowedNames(Set<String> disallowedNames, String disallowedNameErrorMessage)
-
setCustomAssignmentsProperties
public void setCustomAssignmentsProperties(Map<String,List<String>> customAssignmentsProperties)
-
isDuplicateName
public boolean isDuplicateName(String name)
Tests whether a Row name occurs more than once in the list of rows- Parameters:
name
-- Returns:
-
setIsVisible
public void setIsVisible(boolean visible)
-
getWidget
public com.google.gwt.user.client.ui.Widget getWidget()
-
-