Uses of Interface
org.springframework.richclient.dialog.DialogPage

Packages that use DialogPage
org.springframework.richclient.application.setup   
org.springframework.richclient.dialog   
org.springframework.richclient.dialog.support   
org.springframework.richclient.preference   
org.springframework.richclient.wizard   
 

Uses of DialogPage in org.springframework.richclient.application.setup
 

Classes in org.springframework.richclient.application.setup that implement DialogPage
 class SetupIntroWizardPage
           
 class SetupLicenseWizardPage
          A WizardPage which shows a license text and confirmation radio buttons at the bottom.
 

Uses of DialogPage in org.springframework.richclient.dialog
 

Classes in org.springframework.richclient.dialog that implement DialogPage
 class AbstractDialogPage
          A convenience implementation of the DialogPage interface.
 class CompositeDialogPage
          An implementation of the DialogPage interface that collects a group of dialog pages together so that they can be used in place of a single DialogPage
 class FormBackedDialogPage
          An implementation of DialogPage that delegates to a FormPage for its control, pageComplete status and messages.
 class TabbedDialogPage
          A concrete implementation of CompositeDialogPage that presents the child pages in a JTabbedPane.
 class TreeCompositeDialogPage
          A concrete implementation of CompositeDialogPage that presents the child pages in a tree on the left, and the pages itself on the right.
 

Methods in org.springframework.richclient.dialog that return DialogPage
 DialogPage TreeCompositeDialogPage.addForm(DialogPage parent, Form form)
          Adds a new page to the tree.
 DialogPage CompositeDialogPage.addForm(Form form)
          Adds a new page to the list of pages managed by this CompositeDialogPage.
protected  DialogPage CompositeDialogPage.createDialogPage(Form form)
           
 DialogPage CompositeDialogPage.getActivePage()
          Gets the active page of this CompositeDialogPage.
protected  DialogPage TitledPageApplicationDialog.getDialogPage()
           
 

Methods in org.springframework.richclient.dialog with parameters of type DialogPage
 DialogPage TreeCompositeDialogPage.addForm(DialogPage parent, Form form)
          Adds a new page to the tree.
 void CompositeDialogPage.addPage(DialogPage page)
          Adds a DialogPage to the list of pages managed by this CompositeDialogPage.
 void TreeCompositeDialogPage.addPage(DialogPage page)
          Adds a DialogPage to the tree.
 void TreeCompositeDialogPage.addPage(DialogPage parent, DialogPage child)
          Adds a DialogPage to the tree.
 void CompositeDialogPage.addPages(DialogPage[] pages)
          Adds an array DialogPage to the list of pages managed by this CompositeDialogPage.
 void TreeCompositeDialogPage.addPages(DialogPage parent, DialogPage[] pages)
          Adds a group DialogPages to the tree.
 void TreeCompositeDialogPage.addPages(DialogPage parent, DialogPage[] pages)
          Adds a group DialogPages to the tree.
protected  String CompositeDialogPage.decoratePageTitle(DialogPage page, String title)
          Decorates the page title of the given DialogPage.
protected  void TabbedDialogPage.decorateTab(Tab tab, DialogPage page)
           
protected  String CompositeDialogPage.getDecoratedPageTitle(DialogPage page)
           
protected  DefaultMutableTreeNode TreeCompositeDialogPage.getNode(DialogPage page)
           
protected  Tab TabbedDialogPage.getTab(DialogPage page)
           
protected  void CompositeDialogPage.onPageSelected(DialogPage page, boolean selected)
           
protected  void CompositeDialogPage.prepareDialogPage(DialogPage page)
          Prepare a dialog page - Add our property listeners and configure the control's look.
protected  void TreeCompositeDialogPage.processDialogPage(DialogPage page)
           
 void TreeCompositeDialogPage.removePage(DialogPage page)
          Remove a page from the tree.
 void CompositeDialogPage.setActivePage(DialogPage activePage)
          Sets the active page of this CompositeDialogPage.
 void TabbedDialogPage.setActivePage(DialogPage page)
          Sets the active page of this TabbedDialogPage.
protected  void TitledPageApplicationDialog.setDialogPage(DialogPage dialogPage)
           
protected  void CompositeDialogPage.updatePageComplete(DialogPage page)
           
protected  void TabbedDialogPage.updatePageComplete(DialogPage page)
           
protected  void TreeCompositeDialogPage.updatePageComplete(DialogPage page)
           
protected  void CompositeDialogPage.updatePageEnabled(DialogPage page)
           
protected  void TabbedDialogPage.updatePageEnabled(DialogPage page)
           
protected  void CompositeDialogPage.updatePageLabels(DialogPage page)
           
protected  void TabbedDialogPage.updatePageLabels(DialogPage page)
           
protected  void TreeCompositeDialogPage.updatePageLabels(DialogPage page)
           
protected  void CompositeDialogPage.updatePageVisibility(DialogPage page)
           
protected  void TabbedDialogPage.updatePageVisibility(DialogPage page)
           
 

Constructors in org.springframework.richclient.dialog with parameters of type DialogPage
TitledPageApplicationDialog(DialogPage dialogPage)
           
TitledPageApplicationDialog(DialogPage dialogPage, Window parent)
           
TitledPageApplicationDialog(DialogPage dialogPage, Window parent, CloseAction closeAction)
           
 

Uses of DialogPage in org.springframework.richclient.dialog.support
 

Methods in org.springframework.richclient.dialog.support with parameters of type DialogPage
static void DialogPageUtils.adaptPageCompletetoGuarded(DialogPage dialogPage, Guarded guarded)
          Create an adapter that will monitor the page complete status of the dialog page and adapt it to operations on the provided Guarded object.
static void DialogPageUtils.addMessageMonitor(DialogPage dialogPage, Messagable monitor)
          Add a message monitor.
static JComponent DialogPageUtils.createStandardView(DialogPage dialogPage, ActionCommand okCommand, ActionCommand cancelCommand)
          Construct a complete standard layout for a dialog page.
static JComponent DialogPageUtils.createStandardView(DialogPage dialogPage, Object[] commandGroupMembers)
          Construct a complete standard layout for a dialog page.
static TitlePane DialogPageUtils.createTitlePane(DialogPage dialogPage)
          Create a standard TitlePane wired to receive messages from the given dialog page.
 

Uses of DialogPage in org.springframework.richclient.preference
 

Classes in org.springframework.richclient.preference that implement DialogPage
 class FormBackedPreferencePage
           
 class PreferencePage
           
 

Uses of DialogPage in org.springframework.richclient.wizard
 

Subinterfaces of DialogPage in org.springframework.richclient.wizard
 interface WizardPage
           
 

Classes in org.springframework.richclient.wizard that implement DialogPage
 class AbstractWizardPage
           
 class FormBackedWizardPage
          An implementation of WizardPage that delegates to a FormPage for its control, pageComplete status and messages.
 



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