Package nl.gx.forms.wmpformapi.api.form
Interface CompositeFormFragmentPart
-
- All Superinterfaces:
Identifiable
public interface CompositeFormFragmentPart extends Identifiable
Represents a "part" of a CompositeFormFragment.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompositeFormFragment
getCompositeFormFragment()
Returns the CompositeFormFragment to which this part belongs.List<BasicFormFragment>
getFragments()
Returns a list of FormFields underlying this composite form field.String
getIdentifier()
Returns the unique identifier of this part.void
setFragments(List<BasicFormFragment> fragments)
Sets the list of form fragments in this part.void
setIdentifier(String identifier)
Sets the unique identifier of this part.-
Methods inherited from interface nl.gx.webmanager.services.entitymanager.Identifiable
getId, setId
-
-
-
-
Method Detail
-
getFragments
List<BasicFormFragment> getFragments()
Returns a list of FormFields underlying this composite form field.- Returns:
- a list of FormFields underlying this composite form field
-
setFragments
void setFragments(List<BasicFormFragment> fragments)
Sets the list of form fragments in this part.- Parameters:
fragments
- the list of form fragments in this part
-
getIdentifier
String getIdentifier()
Returns the unique identifier of this part.- Returns:
- the unique identifier of this part
-
setIdentifier
void setIdentifier(String identifier)
Sets the unique identifier of this part.- Parameters:
identifier
- the unique identifier of this part
-
getCompositeFormFragment
CompositeFormFragment getCompositeFormFragment()
Returns the CompositeFormFragment to which this part belongs.- Returns:
- the CompositeFormFragment to which this part belongs
-
-