Package net.officefloor.gef.configurer
Interface ItemBuilder<M>
-
- All Known Subinterfaces:
ConfigurationBuilder<M>,InputBuilder<M>,ListBuilder<M,I>,MultipleBuilder<M,I>,OptionalBuilder<M>
- All Known Implementing Classes:
AbstractConfigurationBuilder,Configurer,ListBuilderImpl,MultipleBuilderImpl,OptionalBuilderImpl
public interface ItemBuilder<M>Builder of item configuration.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FlagBuilder<M>flag(java.lang.String label)Adds flag property to be configured.TextBuilder<M>text(java.lang.String label)Adds text property to be configured.
-
-
-
Method Detail
-
text
TextBuilder<M> text(java.lang.String label)
Adds text property to be configured.- Parameters:
label- Label.- Returns:
TextBuilder.
-
flag
FlagBuilder<M> flag(java.lang.String label)
Adds flag property to be configured.- Parameters:
label- Label.- Returns:
FlagBuilder.
-
-