Package org.imixs.workflow.office.forms
Class FormDefinition
- java.lang.Object
-
- org.imixs.workflow.office.forms.FormDefinition
-
public class FormDefinition extends Object
A FormDefinition holds the information about the form parts defined by a workitem. This object is created by the FormController.- Version:
- 1.0
- Author:
- rsoika
- See Also:
FormController
-
-
Constructor Summary
Constructors Constructor Description FormDefinition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()StringgetPath()ArrayList<FormSection>getSections()voidsetName(String name)voidsetPath(String path)voidsetSections(ArrayList<FormSection> sections)
-
-
-
Method Detail
-
getSections
public ArrayList<FormSection> getSections()
-
setSections
public void setSections(ArrayList<FormSection> sections)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
getName
public String getName()
-
setName
public void setName(String name)
-
-