Interface FormCreationData
-
- All Known Implementing Classes:
FormCreationDataImpl
public interface FormCreationDataInterface definition for a simple DTO containing various objects needed to generate Forms.- Since:
- 3.4
- Author:
- Nick Smith
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.Object>getContext()java.lang.ObjectgetItemData()booleanisForcedField(java.lang.String fieldName)
-
-
-
Method Detail
-
getItemData
java.lang.Object getItemData()
- Returns:
- the itemData
-
isForcedField
boolean isForcedField(java.lang.String fieldName)
- Returns:
- If the
fieldNamegiven is a forced field then returnstrue, otherwise returnsfalse.
-
getContext
java.util.Map<java.lang.String,java.lang.Object> getContext()
- Returns:
- the context
-
-