Uses of Interface
org.springframework.richclient.application.ApplicationWindow

Packages that use ApplicationWindow
org.springframework.richclient.application Base application interfaces/classes. 
org.springframework.richclient.application.config   
org.springframework.richclient.application.docking.flexdock   
org.springframework.richclient.application.docking.vldocking   
org.springframework.richclient.application.mdi   
org.springframework.richclient.application.support   
org.springframework.richclient.application.tabbed   
org.springframework.richclient.command.support   
org.springframework.richclient.samples.petclinic   
org.springframework.richclient.samples.showcase   
org.springframework.richclient.samples.simple.app   
 

Uses of ApplicationWindow in org.springframework.richclient.application
 

Methods in org.springframework.richclient.application that return ApplicationWindow
 ApplicationWindow ApplicationWindowFactory.createApplicationWindow()
          Create a new ApplicationWindow.
protected  ApplicationWindow Application.createNewWindow()
           
 ApplicationWindow WindowManager.getActiveWindow()
           
 ApplicationWindow Application.getActiveWindow()
          ActiveWindow is tracked by windowManager.
 ApplicationWindow PageComponentContext.getWindow()
           
 ApplicationWindow ApplicationPage.getWindow()
           
 ApplicationWindow[] WindowManager.getWindows()
          Returns this window manager's set of windows.
 

Methods in org.springframework.richclient.application with parameters of type ApplicationWindow
 void WindowManager.add(ApplicationWindow window)
          Adds the given window to the set of windows managed by this window manager.
 ApplicationPage ApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
          Create a new ApplicationPage.
 ActionCommand PageDescriptor.createShowPageCommand(ApplicationWindow window)
          Create a command that when executed, will attempt to show the page component described by this descriptor in the provided application window.
 ActionCommand ViewDescriptor.createShowViewCommand(ApplicationWindow window)
          Create a command that when executed, will attempt to show the page component described by this descriptor in the provided application window.
 void WindowManager.remove(ApplicationWindow window)
          Removes the given window from the set of windows managed by this window manager.
 void WindowManager.setActiveWindow(ApplicationWindow window)
          Set the currently active window.
 

Uses of ApplicationWindow in org.springframework.richclient.application.config
 

Methods in org.springframework.richclient.application.config that return ApplicationWindow
protected  ApplicationWindow ApplicationLifecycleAdvisor.getOpeningWindow()
           
 ApplicationWindow ApplicationWindowConfigurer.getWindow()
           
 

Methods in org.springframework.richclient.application.config with parameters of type ApplicationWindow
 void ApplicationLifecycleAdvisor.onCommandsCreated(ApplicationWindow window)
          Hook called right after commands are initialized.
 boolean ApplicationLifecycleAdvisor.onPreWindowClose(ApplicationWindow window)
          Check if the ApplicationWindow can close.
 void ApplicationLifecycleAdvisor.onWindowCreated(ApplicationWindow window)
          Hook called right after the window (JFrame) of the application is created.
 void ApplicationLifecycleAdvisor.onWindowOpened(ApplicationWindow window)
          Hook called right after the window (JFrame) of the application is shown (setVisible(true)).
 void ApplicationWindowAware.setApplicationWindow(ApplicationWindow window)
          Sets the reference to the application window that this object was created within.
 void ApplicationLifecycleAdvisor.setOpeningWindow(ApplicationWindow window)
           
 

Uses of ApplicationWindow in org.springframework.richclient.application.docking.flexdock
 

Methods in org.springframework.richclient.application.docking.flexdock with parameters of type ApplicationWindow
 ApplicationPage FlexDockApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
           
 

Uses of ApplicationWindow in org.springframework.richclient.application.docking.vldocking
 

Methods in org.springframework.richclient.application.docking.vldocking with parameters of type ApplicationWindow
 ApplicationPage VLDockingApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
           
protected  VLDockingApplicationPage VLDockingApplicationPageFactory.findPage(ApplicationWindow window, PageDescriptor descriptor)
           
 

Constructors in org.springframework.richclient.application.docking.vldocking with parameters of type ApplicationWindow
VLDockingApplicationPage(ApplicationWindow window, PageDescriptor pageDescriptor)
           
 

Uses of ApplicationWindow in org.springframework.richclient.application.mdi
 

Methods in org.springframework.richclient.application.mdi with parameters of type ApplicationWindow
 ApplicationPage DesktopApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
           
 

Constructors in org.springframework.richclient.application.mdi with parameters of type ApplicationWindow
DesktopApplicationPage(ApplicationWindow window, PageDescriptor pageDescriptor, int dragMode, DesktopCommandGroupFactory desktopCommandGroupFactory)
           
 

Uses of ApplicationWindow in org.springframework.richclient.application.support
 

Classes in org.springframework.richclient.application.support that implement ApplicationWindow
 class AbstractApplicationWindow
          Abstract helper implementation for ApplicationWindow.
 class DefaultApplicationWindow
          Provides a default implementation of ApplicationWindow
 

Methods in org.springframework.richclient.application.support that return ApplicationWindow
 ApplicationWindow DefaultApplicationWindowFactory.createApplicationWindow()
           
protected  ApplicationWindow ApplicationServicesAccessor.getActiveWindow()
           
 ApplicationWindow AbstractApplicationPage.getWindow()
           
 ApplicationWindow DefaultApplicationWindowConfigurer.getWindow()
           
 ApplicationWindow DefaultViewContext.getWindow()
           
 

Methods in org.springframework.richclient.application.support with parameters of type ApplicationWindow
 ApplicationPage DefaultApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
           
protected  ApplicationPage AbstractApplicationWindow.createPage(ApplicationWindow window, String pageDescriptorId)
           
 ActionCommand AbstractPageDescriptor.createShowPageCommand(ApplicationWindow window)
           
 ActionCommand DefaultViewDescriptor.createShowViewCommand(ApplicationWindow window)
           
 ActionCommand LookupViewDescriptor.createShowViewCommand(ApplicationWindow window)
           
 void AbstractApplicationPage.setApplicationWindow(ApplicationWindow window)
           
 

Constructors in org.springframework.richclient.application.support with parameters of type ApplicationWindow
AbstractApplicationPage(ApplicationWindow window, PageDescriptor pageDescriptor)
           
DefaultApplicationPage(ApplicationWindow window, PageDescriptor pageDescriptor)
           
DefaultApplicationWindowConfigurer(ApplicationWindow window)
           
SharedCommandTargeter(ApplicationWindow window)
           
 

Uses of ApplicationWindow in org.springframework.richclient.application.tabbed
 

Methods in org.springframework.richclient.application.tabbed with parameters of type ApplicationWindow
 ApplicationPage TabbedApplicationPageFactory.createApplicationPage(ApplicationWindow window, PageDescriptor descriptor)
           
 

Uses of ApplicationWindow in org.springframework.richclient.command.support
 

Methods in org.springframework.richclient.command.support that return ApplicationWindow
protected  ApplicationWindow ApplicationWindowAwareCommand.getApplicationWindow()
          Returns the application window that this component was created within.
 

Methods in org.springframework.richclient.command.support with parameters of type ApplicationWindow
 void ShowViewMenu.setApplicationWindow(ApplicationWindow window)
          Sets the reference to the application window that this object was created within.
 void ApplicationWindowAwareCommand.setApplicationWindow(ApplicationWindow window)
          Sets the reference to the application window that this object was created within.
 void ShowPageMenu.setApplicationWindow(ApplicationWindow window)
          Sets the reference to the application window that this object was created within.
 

Constructors in org.springframework.richclient.command.support with parameters of type ApplicationWindow
ShowPageCommand(PageDescriptor pageDescriptor, ApplicationWindow applicationWindow)
          Creates a new ShowPageCommand with the given page descriptor and associated application window.
ShowViewCommand(ViewDescriptor viewDescriptor, ApplicationWindow applicationWindow)
          Creates a new ShowViewCommand with the given view descriptor and associated application window.
 

Uses of ApplicationWindow in org.springframework.richclient.samples.petclinic
 

Methods in org.springframework.richclient.samples.petclinic with parameters of type ApplicationWindow
 void PetClinicLifecycleAdvisor.onCommandsCreated(ApplicationWindow window)
          When commands are created, lookup the login command and execute it.
 

Uses of ApplicationWindow in org.springframework.richclient.samples.showcase
 

Methods in org.springframework.richclient.samples.showcase with parameters of type ApplicationWindow
 void ShowcaseLifecycleAdvisor.onCommandsCreated(ApplicationWindow window)
          Called just after the command context has been internalized.
 boolean ShowcaseLifecycleAdvisor.onPreWindowClose(ApplicationWindow window)
          Called when the window is being closed.
 void ShowcaseLifecycleAdvisor.onWindowCreated(ApplicationWindow window)
          Called after the actual window control has been created.
 void ShowcaseLifecycleAdvisor.onWindowOpened(ApplicationWindow window)
          Called immediately after making the window visible.
 

Uses of ApplicationWindow in org.springframework.richclient.samples.simple.app
 

Methods in org.springframework.richclient.samples.simple.app with parameters of type ApplicationWindow
 void SimpleLifecycleAdvisor.onCommandsCreated(ApplicationWindow window)
          Called just after the command context has been internalized.
 boolean SimpleLifecycleAdvisor.onPreWindowClose(ApplicationWindow window)
          Called when the window is being closed.
 void SimpleLifecycleAdvisor.onWindowCreated(ApplicationWindow window)
          Called after the actual window control has been created.
 void SimpleLifecycleAdvisor.onWindowOpened(ApplicationWindow window)
          Called immediately after making the window visible.
 



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