*/
protected Form createDefaultForm(String processId, FormData formData) {
// create default empty form
Form form = new Form();
form.setProperty(FormUtil.PROPERTY_ID, "assignmentForm");
form.setLoadBinder(new WorkflowFormBinder());
form.setStoreBinder(new WorkflowFormBinder());
// add textfields for workflow variables
Collection<Element> children = new ArrayList<Element>();
Collection<WorkflowVariable> variableList = workflowManager.getProcessVariableList(processId);
for (WorkflowVariable variable : variableList) {