Module is.codion.swing.common.ui
Class AbstractComponentBuilder<T,C extends JComponent,B extends ComponentBuilder<T,C,B>>
java.lang.Object
is.codion.swing.common.ui.component.builder.AbstractComponentBuilder<T,C,B>
- All Implemented Interfaces:
ComponentBuilder<T,
C, B>
- Direct Known Subclasses:
DefaultComboBoxBuilder
public abstract class AbstractComponentBuilder<T,C extends JComponent,B extends ComponentBuilder<T,C,B>>
extends Object
implements ComponentBuilder<T,C,B>
-
Field Summary
Fields inherited from interface is.codion.swing.common.ui.component.builder.ComponentBuilder
COMPONENT_VALUE
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
protected
AbstractComponentBuilder
(Value<T> linkedValue) Note that when a linked value is set via the constructor, it is considered locked and cannot be changed. -
Method Summary
Modifier and TypeMethodDescriptionfinal B
background
(Color background) final B
final C
build()
Builds a new component instance.final C
Builds a new component instance.final ComponentValue
<T, C> Builds and returns the component value.final ComponentValue
<T, C> buildValue
(Consumer<ComponentValue<T, C>> onBuild) Builds and returns the component value.final B
clientProperty
(Object key, Object value) Adds an arbitrary key/value "client property" to the componentfinal B
componentListener
(ComponentListener componentListener) final B
componentOrientation
(ComponentOrientation componentOrientation) final B
protected abstract C
Creates the component.protected abstract ComponentValue
<T, C> createComponentValue
(C component) Creates the component valuefinal B
enabled
(boolean enabled) Sets the enabled state of the component, for a dynamic enabled state useComponentBuilder.enabled(ObservableState)
.final B
enabled
(ObservableState enabled) protected void
enableTransferFocusOnEnter
(C component, TransferFocusOnEnter transferFocusOnEnter) Enables focus transfer on Enter, override for special handlingprotected void
enableValidIndicator
(ValidIndicatorFactory validIndicatorFactory, C component, ObservableState valid) Enables a valid indicator on the given component, based on the given valid state instance using the givenValidIndicatorFactory
, override for special handling.final B
focusable
(boolean focusable) final B
focusCycleRoot
(boolean focusCycleRoot) final B
focusListener
(FocusListener focusListener) final B
final B
foreground
(Color foreground) final B
keyEvent
(KeyEvents.Builder keyEventBuilder) Enables the key event defined by the givenKeyEvents.Builder
on the component.final B
keyListener
(KeyListener keyListener) final B
final B
link
(Observable<T> linkedObservable) Creates a read-only link to the givenObservable
.final B
Creates a bidirectional link to the given value.final B
final B
maximumHeight
(int maximumHeight) final B
maximumSize
(Dimension maximumSize) final B
maximumWidth
(int maximumWidth) final B
minimumHeight
(int minimumHeight) final B
minimumSize
(Dimension minimumSize) final B
minimumWidth
(int minimumWidth) final B
modifiedIndicator
(ObservableState modified) Enables a modified indicator based on the given modified state.final B
modifiedIndicatorFactory
(ModifiedIndicatorFactory modifiedIndicatorFactory) By defaultUnderlineModifiedIndicatorFactory
.final B
mouseListener
(MouseListener mouseListener) final B
mouseMotionListener
(MouseMotionListener mouseMotionListener) final B
mouseWheelListener
(MouseWheelListener mouseWheelListener) final B
final B
final B
onBuildValue
(Consumer<ComponentValue<T, C>> onBuildValue) final B
onSetVisible
(Consumer<C> onSetVisible) final B
opaque
(boolean opaque) final B
popupMenu
(Function<C, JPopupMenu> popupMenu) final B
popupMenuControl
(Function<C, Control> popupMenuControl) final B
popupMenuControls
(Function<C, Controls> popupMenuControls) final B
preferredHeight
(int preferredHeight) final B
preferredSize
(Dimension preferredSize) final B
preferredWidth
(int preferredWidth) final B
propertyChangeListener
(PropertyChangeListener propertyChangeListener) final B
propertyChangeListener
(String propertyName, PropertyChangeListener propertyChangeListener) final ScrollPaneBuilder
protected final B
self()
protected boolean
final B
toolTipText
(Observable<String> toolTipText) OverridesComponentBuilder.toolTipText(String)
final B
toolTipText
(String toolTipText) final B
transferFocusOnEnter
(boolean transferFocusOnEnter) Note that in case ofJTextArea
theInputEvent.CTRL_DOWN_MASK
modifier is added for transferring the focus forward.final B
transferFocusOnEnter
(TransferFocusOnEnter transferFocusOnEnter) Note that in case ofJTextArea
theInputEvent.CTRL_DOWN_MASK
modifier is added for transferring the focus forward.final B
transferHandler
(TransferHandler transferHandler) final B
validator
(Value.Validator<T> validator) final B
validIndicator
(ObservableState valid) Enables a valid indicator based on the given valid state.final B
validIndicator
(Predicate<T> validator) Enables a valid indicator based on the given validator.final B
validIndicatorFactory
(ValidIndicatorFactory validIndicatorFactory) final B
Sets the initial value for the component, unless value(s) have been linked viaComponentBuilder.link(Value)
orComponentBuilder.link(Observable)
, which then control the inital value.final B
visible
(boolean visible)
-
Constructor Details
-
AbstractComponentBuilder
protected AbstractComponentBuilder() -
AbstractComponentBuilder
Note that when a linked value is set via the constructor, it is considered locked and cannot be changed.- Parameters:
linkedValue
- the linked value, may be null
-
-
Method Details
-
name
- Specified by:
name
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
name
- the name to assign to the component- Returns:
- this builder instance
- See Also:
-
label
- Specified by:
label
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
label
- the label for the component- Returns:
- this builder instance
- See Also:
-
focusable
- Specified by:
focusable
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
focusable
- false if the component should not be focusable- Returns:
- this builder instance
- See Also:
-
preferredHeight
- Specified by:
preferredHeight
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
preferredHeight
- the preferred component height- Returns:
- this builder instance
-
preferredWidth
- Specified by:
preferredWidth
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
preferredWidth
- the preferred component width- Returns:
- this builder instance
-
preferredSize
- Specified by:
preferredSize
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
preferredSize
- the preferred component size- Returns:
- this builder instance
- See Also:
-
maximumHeight
- Specified by:
maximumHeight
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
maximumHeight
- the maximum component height- Returns:
- this builder instance
-
maximumWidth
- Specified by:
maximumWidth
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
maximumWidth
- the maximum component width- Returns:
- this builder instance
-
maximumSize
- Specified by:
maximumSize
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
maximumSize
- the maximum component size- Returns:
- this builder instance
- See Also:
-
minimumHeight
- Specified by:
minimumHeight
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
minimumHeight
- the minimum component height- Returns:
- this builder instance
-
minimumWidth
- Specified by:
minimumWidth
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
minimumWidth
- the minimum component width- Returns:
- this builder instance
-
minimumSize
- Specified by:
minimumSize
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
minimumSize
- the minimum component size- Returns:
- this builder instance
- See Also:
-
border
- Specified by:
border
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
border
- the component border- Returns:
- this builder instance
- See Also:
-
transferFocusOnEnter
Description copied from interface:ComponentBuilder
Note that in case of
JTextArea
theInputEvent.CTRL_DOWN_MASK
modifier is added for transferring the focus forward.- Specified by:
transferFocusOnEnter
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
transferFocusOnEnter
- if true then the compnent transfers focus on enter (shift-enter for backwards)- Returns:
- this builder instance
-
transferFocusOnEnter
Description copied from interface:ComponentBuilder
Note that in case of
JTextArea
theInputEvent.CTRL_DOWN_MASK
modifier is added for transferring the focus forward.- Specified by:
transferFocusOnEnter
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
transferFocusOnEnter
- the transfer focus on enter to enable- Returns:
- this builder instance
-
enabled
Description copied from interface:ComponentBuilder
Sets the enabled state of the component, for a dynamic enabled state useComponentBuilder.enabled(ObservableState)
. Overridden byComponentBuilder.enabled(ObservableState)
.- Specified by:
enabled
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
enabled
- the enabled state- Returns:
- this builder instance
- See Also:
-
enabled
- Specified by:
enabled
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
enabled
- the state observer controlling the component enabled status- Returns:
- this builder instance
-
validIndicatorFactory
- Specified by:
validIndicatorFactory
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
validIndicatorFactory
- theValidIndicatorFactory
to use, null for none- Returns:
- this builder instance
- See Also:
-
validIndicator
Description copied from interface:ComponentBuilder
Enables a valid indicator based on the given valid state.- Specified by:
validIndicator
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
valid
- the valid state- Returns:
- this builder instance
- See Also:
-
validIndicator
Description copied from interface:ComponentBuilder
Enables a valid indicator based on the given validator. Note that this is overridden by
ComponentBuilder.validIndicator(ObservableState)
.The validator gets called each time the value changes and should return true as long as the value is valid.
- Specified by:
validIndicator
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
validator
- called each time the component value changes- Returns:
- this builder instance
- See Also:
-
modifiedIndicatorFactory
Description copied from interface:ComponentBuilder
By defaultUnderlineModifiedIndicatorFactory
.- Specified by:
modifiedIndicatorFactory
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
modifiedIndicatorFactory
- theModifiedIndicatorFactory
to use, null for none- Returns:
- this builder instance
-
modifiedIndicator
Description copied from interface:ComponentBuilder
Enables a modified indicator based on the given modified state.- Specified by:
modifiedIndicator
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
modified
- the modified state- Returns:
- this builder instance
- See Also:
-
popupMenuControl
- Specified by:
popupMenuControl
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
popupMenuControl
- a function, receiving the component being built, providing the control to base a popup menu on- Returns:
- this builder instance
-
popupMenuControls
- Specified by:
popupMenuControls
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
popupMenuControls
- a function, receiving the component being built, providing the controls to base a popup menu on- Returns:
- this builder instance
-
popupMenu
- Specified by:
popupMenu
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
popupMenu
- a function, receiving the component being built, providing the popup menu- Returns:
- this builder instance
- See Also:
-
toolTipText
- Specified by:
toolTipText
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
toolTipText
- a static tool tip text- Returns:
- this builder instance
- See Also:
-
toolTipText
Description copied from interface:ComponentBuilder
OverridesComponentBuilder.toolTipText(String)
- Specified by:
toolTipText
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
toolTipText
- a dynamic tool tip text- Returns:
- this builder instance
- See Also:
-
font
- Specified by:
font
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
font
- the component font- Returns:
- this builder instance
- See Also:
-
foreground
- Specified by:
foreground
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
foreground
- the foreground color- Returns:
- this builder instance
- See Also:
-
background
- Specified by:
background
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
background
- the background color- Returns:
- this builder instance
- See Also:
-
opaque
- Specified by:
opaque
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
opaque
- true if the component should be opaque- Returns:
- this builder instance
- See Also:
-
visible
- Specified by:
visible
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
visible
- the initial component visibility, default true- Returns:
- this builder instance
- See Also:
-
componentOrientation
- Specified by:
componentOrientation
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
componentOrientation
- the component orientation- Returns:
- this builder instance
- See Also:
-
validator
- Specified by:
validator
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
validator
- the validator to use- Returns:
- this builder instance
-
keyEvent
Description copied from interface:ComponentBuilder
Enables the key event defined by the givenKeyEvents.Builder
on the component. Note that settingComponentBuilder.transferFocusOnEnter(boolean)
to true overrides any conflicting key event based onKeyEvent.VK_ENTER
added via this method.- Specified by:
keyEvent
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
keyEventBuilder
- a key event builder to enable on the component- Returns:
- this builder instance
-
clientProperty
Description copied from interface:ComponentBuilder
Adds an arbitrary key/value "client property" to the component- Specified by:
clientProperty
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
key
- the keyvalue
- the value- Returns:
- this builder instance
- See Also:
-
focusListener
- Specified by:
focusListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
focusListener
- the focus listener- Returns:
- this builder instance
- See Also:
-
mouseListener
- Specified by:
mouseListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
mouseListener
- the mouse listener- Returns:
- this builder instance
- See Also:
-
mouseMotionListener
- Specified by:
mouseMotionListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
mouseMotionListener
- the mouse motion listener- Returns:
- this builder instance
- See Also:
-
mouseWheelListener
- Specified by:
mouseWheelListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
mouseWheelListener
- the mouse wheel listener- Returns:
- this builder instance
- See Also:
-
keyListener
- Specified by:
keyListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
keyListener
- the key listener- Returns:
- this builder instance
- See Also:
-
componentListener
- Specified by:
componentListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
componentListener
- the component listener- Returns:
- this builder instance
- See Also:
-
propertyChangeListener
- Specified by:
propertyChangeListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
propertyChangeListener
- the property change listener- Returns:
- this builder instance
- See Also:
-
propertyChangeListener
public final B propertyChangeListener(String propertyName, PropertyChangeListener propertyChangeListener) - Specified by:
propertyChangeListener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
propertyName
- the name of the property to listen forpropertyChangeListener
- the property change listener- Returns:
- this builder instance
- See Also:
-
transferHandler
- Specified by:
transferHandler
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
transferHandler
- the transfer handler- Returns:
- this builder instance
- See Also:
-
focusCycleRoot
- Specified by:
focusCycleRoot
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
focusCycleRoot
- true if the component should be the root of a focus traversal cycle- Returns:
- this builder instance
- See Also:
-
onSetVisible
- Specified by:
onSetVisible
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
onSetVisible
- called when the component is made visible for the first time- Returns:
- this builder instance
-
link
Description copied from interface:ComponentBuilder
Creates a bidirectional link to the given value. Overrides any initial value set.- Specified by:
link
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
linkedValue
- a value to link to the component value- Returns:
- this builder instance
-
link
Description copied from interface:ComponentBuilder
Creates a read-only link to the givenObservable
.- Specified by:
link
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
linkedObservable
- a value to link to the component value- Returns:
- this builder instance
-
listener
- Specified by:
listener
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
listener
- a listener to add to the resulting component value- Returns:
- this builder instance
-
consumer
- Specified by:
consumer
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
consumer
- a consumer to add to the resulting component value- Returns:
- this builder instance
-
value
Description copied from interface:ComponentBuilder
Sets the initial value for the component, unless value(s) have been linked viaComponentBuilder.link(Value)
orComponentBuilder.link(Observable)
, which then control the inital value. The initial value is set before any listeners are added, so no events are triggered.- Specified by:
value
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
value
- the initial value- Returns:
- this builder instance
-
scrollPane
- Specified by:
scrollPane
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Returns:
- a
ScrollPaneBuilder
using this component as the view
-
onBuild
- Specified by:
onBuild
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
onBuild
- called when the component has been built.- Returns:
- this builder instance
-
onBuildValue
- Specified by:
onBuildValue
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
onBuildValue
- called when the component value has been built.- Returns:
- this builder instance
-
build
Description copied from interface:ComponentBuilder
Builds a new component instance.- Specified by:
build
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Returns:
- the component
-
build
Description copied from interface:ComponentBuilder
Builds a new component instance.- Specified by:
build
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
onBuild
- called after the component is built.- Returns:
- the component
-
buildValue
Description copied from interface:ComponentBuilder
Builds and returns the component value.- Specified by:
buildValue
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Returns:
- the component value
-
buildValue
Description copied from interface:ComponentBuilder
Builds and returns the component value.- Specified by:
buildValue
in interfaceComponentBuilder<T,
C extends JComponent, B extends ComponentBuilder<T, C, B>> - Parameters:
onBuild
- called after the component value is built.- Returns:
- the component value
-
createComponent
Creates the component.- Returns:
- a new component instance
-
createComponentValue
Creates the component value- Parameters:
component
- the component- Returns:
- a component value based on the component
-
supportsNull
protected boolean supportsNull()- Returns:
- true if this component can be linked with a nullable value
-
enableTransferFocusOnEnter
Enables focus transfer on Enter, override for special handling- Parameters:
component
- the componenttransferFocusOnEnter
- the transfer focus on enter to enable
-
enableValidIndicator
protected void enableValidIndicator(ValidIndicatorFactory validIndicatorFactory, C component, ObservableState valid) Enables a valid indicator on the given component, based on the given valid state instance using the givenValidIndicatorFactory
, override for special handling.- Parameters:
validIndicatorFactory
- theValidIndicatorFactory
to usecomponent
- the componentvalid
- the valid state to indicate
-
self
-