Package it.tidalwave.ui.javafx
Interface PresentationAssembler
public interface PresentationAssembler
This interface can be implemented by the application main presentation. In this case, it will called back with the
related method to be able to programmatically assemble parts of the UI — typically a toolbar and a main panel.
- Since:
- 1.1-ALPHA-4
- Author:
- Fabrizio Giudici
-
Method Summary
Modifier and TypeMethodDescriptionvoid
assemble
(org.springframework.context.ApplicationContext applicationContext) Assemble the application presentation.
-
Method Details
-
assemble
void assemble(@Nonnull org.springframework.context.ApplicationContext applicationContext) Assemble the application presentation. This method is called in the JavaFX thread.- Parameters:
applicationContext
- the application context
-