org.pietschy.command.interceptor
Interface GlassPaneHandler

All Known Implementing Classes:
CustomComponentGlassPaneHandler, DefaultGlassPaneHandler

public interface GlassPaneHandler

GlassPaneHanders are used by the ModalInterceptor to configure the glasspane while a long running process is in progress.

See Also:
DefaultGlassPaneHandler

Method Summary
 void activateGlassPane(javax.swing.RootPaneContainer rootPaneContainer)
          Invoked by GlassPaneInterceptor to activate the glasspane and block user interation.
 void deactivateGlassPane(javax.swing.RootPaneContainer rootPaneContainer)
          Invoked by GlassPaneInterceptor to deactivate the glasspane and allow user interation.
 

Method Detail

activateGlassPane

void activateGlassPane(javax.swing.RootPaneContainer rootPaneContainer)
Invoked by GlassPaneInterceptor to activate the glasspane and block user interation.

Parameters:
rootPaneContainer - the RootPaneContainer whose glass pane is to be activated.

deactivateGlassPane

void deactivateGlassPane(javax.swing.RootPaneContainer rootPaneContainer)
Invoked by GlassPaneInterceptor to deactivate the glasspane and allow user interation.

Parameters:
rootPaneContainer - the RootPaneContainer whose glass pane is to be deactivated.