Groovy Documentation

griffon.swing
[Java] Interface WindowDisplayHandler


public interface WindowDisplayHandler

Controls how windows and internal frames are shown and hidden at runtime.

Authors:
Andres Almiray
Since:
0.3.1


Method Summary
void hide(Window window, GriffonApplication application)

Callback for hiding a window.

void hide(JInternalFrame window, GriffonApplication application)

Callback for hiding an internal frame.

void show(Window window, GriffonApplication application)

Callback for displaying a window.

void show(JInternalFrame window, GriffonApplication application)

Callback for displaying an internal frame.

 

Method Detail

hide

public void hide(Window window, GriffonApplication application)
Callback for hiding a window.
Parameters:
window - the window to hide
application - the current application


hide

public void hide(JInternalFrame window, GriffonApplication application)
Callback for hiding an internal frame.
Parameters:
window - the window to hide
application - the current application
Since:
0.9.5


show

public void show(Window window, GriffonApplication application)
Callback for displaying a window.
Parameters:
window - the window to be displayed
application - the current application


show

public void show(JInternalFrame window, GriffonApplication application)
Callback for displaying an internal frame.
Parameters:
window - the window to be displayed
application - the current application
Since:
0.9.5


 

Groovy Documentation