Interface InlineGroup<G extends InlineGroup<G>>
-
- All Superinterfaces:
Comparable<G>
,Component<G>
,Copyable<G>
,Form<G>
,FormComponent<G>
,Group<G>
,Serializable
- All Known Implementing Classes:
DefaultInlineGroup
public interface InlineGroup<G extends InlineGroup<G>> extends Group<G>
TThis group is used to render the components in one line.- Author:
- Dima Myroniuk (dmyroniuk)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
InlineGroup.Attributes
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default G
divider(InternationalizedMessage dividerMessage)
Adds the message between the components.default G
divider(String divider)
Adds the divider between the components.-
Methods inherited from interface java.lang.Comparable
compareTo
-
Methods inherited from interface com.broadleafcommerce.metadata.dsl.core.Component
addAction, addAction, addComponent, addEndpoint, addEndpoint, apply, attribute, augmentationKey, classifier, clearConditionals, clearEndpoints, conditional, conditionals, description, description, findAction, findAction, findActions, findAttribute, findComponent, findComponent, findComponents, findEndpoint, findEndpoint, findEndpoints, get, get, getAction, getAction, getActions, getActionsList, getAttribute, getAttribute, getAttributes, getAugmentationKey, getClassifier, getComponent, getComponent, getComponents, getComponentsList, getConditionals, getDescription, getEndpoint, getEndpoint, getEndpoints, getEndpointsList, getId, getLabel, getOrder, getScope, getType, hasAction, hasAttribute, hasComponent, hasEndpoint, id, isAugmentable, isTranslatable, label, label, notTranslatable, order, removeAction, removeAttribute, removeComponent, removeEndpoint, scope, self, setActions, setAttributes, setAugmentationKey, setClassifier, setComponents, setConditionals, setDescription, setEndpoints, setId, setLabel, setOrder, setScope, setTranslatable, setType, translatable, translatable, type
-
Methods inherited from interface com.broadleafcommerce.metadata.dsl.core.extension.Form
addExternal, addExternal, addField, addField, addField, addFields, addFormComponents, addGroup, addGroup, external, field, findExternal, findField, findGroup, getExternal, getField, getGroup, group, removeExternal, removeField, removeGroup
-
Methods inherited from interface com.broadleafcommerce.metadata.dsl.core.FormComponent
getHelpText, getHint, getTooltip, helpText, helpText, hidden, hidden, hint, hint, isHidden, notHidden, setHelpText, setHidden, setHint, setTooltip, tooltip, tooltip
-
-
-
-
Method Detail
-
divider
default G divider(String divider)
Adds the divider between the components.- Parameters:
divider
- the divider to use- Returns:
- this field for further customization
-
divider
default G divider(InternationalizedMessage dividerMessage)
Adds the message between the components.- Parameters:
dividerMessage
- the message to add between the components- Returns:
- this field for further customization
-
-