return composite;
}
protected Work updateValue(Work value) {
Work work = new WorkImpl();
work.setName("Human Task");
work.setParameter("TaskName", nameText.getText());
work.setParameter("ActorId", actorText.getText());
work.setParameter("Comment", commentText.getText());
work.setParameter("Priority", priorityText.getText());
work.setParameter("Skippable", skippableButton.getSelection() + "");
work.setParameter("Content", contentText.getText());
work.setParameterDefinitions(((Work) value).getParameterDefinitions());
return work;
}