Package de.xima.fc.mdl.form.record
Class FormFieldDataModel
- java.lang.Object
-
- de.xima.fc.mdl.form.record.FormFieldDataModel
-
- All Implemented Interfaces:
Serializable
,Comparable<FormFieldDataModel>
public class FormFieldDataModel extends Object implements Serializable, Comparable<FormFieldDataModel>
View Model for data of a form record field- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
STYLE_CLASS_PREFIX
-
Constructor Summary
Constructors Constructor Description FormFieldDataModel(int formOrderIdx, String name, String value, String type, String styleClass)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(FormFieldDataModel o)
int
getFormOrderIdx()
String
getName()
String
getStyleClass()
String
getType()
String
getValue()
boolean
isLargeValue()
boolean
isShowAll()
void
setShowAll(boolean showAll)
String
toString()
-
-
-
Field Detail
-
STYLE_CLASS_PREFIX
public static final String STYLE_CLASS_PREFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
getFormOrderIdx
public int getFormOrderIdx()
-
getName
public String getName()
-
getValue
public String getValue()
-
getType
public String getType()
-
getStyleClass
public String getStyleClass()
-
isLargeValue
public boolean isLargeValue()
-
isShowAll
public boolean isShowAll()
-
setShowAll
public void setShowAll(boolean showAll)
-
compareTo
public int compareTo(FormFieldDataModel o)
- Specified by:
compareTo
in interfaceComparable<FormFieldDataModel>
-
-