Package com.storedobject.core.annotation
Annotation Interface Column
Annotation used to specify the features of a field (attribute of a Data Class).
- Author:
- Syam
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionCaption of this field.intDisplay order of this field.booleanIndicates whether the field is read-only.booleanCheck whether this field is required or not.Style of this field.Name of the tab on which this field is displayed.
-
Element Details
-
required
boolean requiredCheck whether this field is required or not.- Returns:
- True/false. Default value is
true.
- Default:
true
-
style
String styleStyle of this field.- Returns:
- Style details. Default value is a
nullstring.
- Default:
""
-
caption
-
order
int orderDisplay order of this field.- Returns:
- Order. Default value is zero.
- Default:
0
-
tab
String tabName of the tab on which this field is displayed.- Returns:
- Tab name. Default value is a
nullstring.
- Default:
""
-
readOnly
boolean readOnlyIndicates whether the field is read-only.- Returns:
- True if the field is read-only; otherwise, false. The default value is false.
- Default:
false
-