org.springframework.richclient.application
Interface PageComponentListener

All Known Implementing Classes:
PageComponentListenerAdapter, SharedCommandTargeter

public interface PageComponentListener


Method Summary
 void componentClosed(PageComponent component)
          Notifies this listener that the given component has been closed.
 void componentFocusGained(PageComponent component)
          Notifies this listener that the given component has been given focus
 void componentFocusLost(PageComponent component)
          Notifies this listener that the given component has lost focus.
 void componentOpened(PageComponent component)
          Notifies this listener that the given component has been created.
 

Method Detail

componentOpened

void componentOpened(PageComponent component)
Notifies this listener that the given component has been created.

Parameters:
component - the component that was created

componentFocusGained

void componentFocusGained(PageComponent component)
Notifies this listener that the given component has been given focus

Parameters:
component - the component that was given focus

componentFocusLost

void componentFocusLost(PageComponent component)
Notifies this listener that the given component has lost focus.

Parameters:
component - the component that lost focus

componentClosed

void componentClosed(PageComponent component)
Notifies this listener that the given component has been closed.

Parameters:
component - the component that was closed


Copyright © 2004-2008 The Spring Framework. All Rights Reserved.