- All Known Implementing Classes:
FormRenderer,GroupRenderer,GroupRendererBase,SectionRenderer,SimpleBooleanControl,SimpleCheckBoxControl,SimpleComboBoxControl,SimpleControl,SimpleDateControl,SimpleDoubleControl,SimpleIntegerControl,SimpleListViewControl,SimpleNumberControl,SimplePasswordControl,SimpleRadioButtonControl,SimpleTextControl
public interface ViewMixin
This interface defines lifecycle of a FormsFX view.
- Author:
- Dieter Holz
-
Method Summary
Modifier and Type Method Description default voidaddStylesheetFiles(String... stylesheetFile)This method adds the stylesheet files to the getStylesheets method.List<String>getStylesheets()This method holds a list of stylesheets.default voidinit()This method calls all the other methods, so that it can be initialized easier.voidinitializeParts()This method is used to initializes all the properties of a class.default voidinitializeSelf()This method can be used to initialize the parts of the same class.voidlayoutParts()This method is used to align the parts of a class.default voidsetupBindings()This method is used to configure the bindings of the properties.default voidsetupEventHandlers()This method is used to set up event handlers.default voidsetupValueChangedListeners()This method is used to set up value change listeners.
-
Method Details
-
getStylesheets
This method holds a list of stylesheets.- Returns:
- List of stylesheets.
-
init
default void init()This method calls all the other methods, so that it can be initialized easier. -
initializeSelf
default void initializeSelf()This method can be used to initialize the parts of the same class. -
initializeParts
void initializeParts()This method is used to initializes all the properties of a class. -
layoutParts
void layoutParts()This method is used to align the parts of a class. -
setupEventHandlers
default void setupEventHandlers()This method is used to set up event handlers. -
setupValueChangedListeners
default void setupValueChangedListeners()This method is used to set up value change listeners. -
setupBindings
default void setupBindings()This method is used to configure the bindings of the properties. -
addStylesheetFiles
This method adds the stylesheet files to the getStylesheets method.- Parameters:
stylesheetFile- List of stylesheet files
-