Package org.imixs.workflow.office.forms
Class CustomFormSection
- java.lang.Object
-
- org.imixs.workflow.office.forms.CustomFormSection
-
public class CustomFormSection extends Object
This CustomFormSection provides the informations from a custom form definition- Version:
- 1.0
- Author:
- rsoika
-
-
Constructor Summary
Constructors Constructor Description CustomFormSection(String label, String columns, String path, boolean readonly)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetColumns()List<CustomFormItem>getItems()StringgetLabel()StringgetPath()booleanisReadonly()voidsetColumns(String columns)voidsetItems(List<CustomFormItem> items)voidsetLabel(String label)voidsetPath(String path)voidsetReadonly(boolean readonly)
-
-
-
Method Detail
-
getLabel
public String getLabel()
-
setLabel
public void setLabel(String label)
-
getColumns
public String getColumns()
-
setColumns
public void setColumns(String columns)
-
getItems
public List<CustomFormItem> getItems()
-
setItems
public void setItems(List<CustomFormItem> items)
-
getPath
public String getPath()
-
setPath
public void setPath(String path)
-
isReadonly
public boolean isReadonly()
-
setReadonly
public void setReadonly(boolean readonly)
-
-