Package it.tidalwave.role.ui.javafx
Interface ApplicationPresentationAssembler<DELEGATE>
-
- Type Parameters:
DELEGATE
-
public interface ApplicationPresentationAssembler<DELEGATE>
Implementation of this interface are called after Spring and JavaFX have been initialised. The purpose of those implementations is to assemble the parts of the application presentation that might have been separately created.- Since:
- 1.0-ALPHA-13
- Author:
- Fabrizio Giudici (Fabrizio.Giudici@tidalwave.it)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
assemble(DELEGATE delegate)
Assemble the application presentation.
-
-
-
Method Detail
-
assemble
void assemble(@Nonnull DELEGATE delegate)
Assemble the application presentation. This method is called in the JavaFX thread.- Parameters:
delegate
- the JavaFX delegate of the main UI
-
-