Interface PersonPresentation
-
- All Known Implementing Classes:
SwingPersonPresentation
public interface PersonPresentation
The presentation for the example.- Author:
- Fabrizio Giudici
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bind(javax.swing.Action okAction, PersonRegistry personRegistry)
Initialize the presentation and bind it to some data and callbacks.void
dispose()
Disposes the presentation.
-
-
-
Method Detail
-
bind
void bind(@Nonnull javax.swing.Action okAction, @Nonnull PersonRegistry personRegistry)
Initialize the presentation and bind it to some data and callbacks.- Parameters:
okAction
- the callback for the Ok buttonpersonRegistry
- the persons
-
dispose
void dispose()
Disposes the presentation.
-
-