Java Doc for WizardPanelDescriptor.java in  » Database-Client » DBBrowser » com » nexes » wizard » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database Client » DBBrowser » com.nexes.wizard 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.nexes.wizard.WizardPanelDescriptor

All known Subclasses:   com.nexes.test.TestPanel1Descriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.HeaderFooterPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.ExportTypePanelDescriptor,  com.nexes.test.TestPanel3Descriptor,  com.nexes.test.TestPanel2Descriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.ExportProgressPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.IncludeTableColumnsPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.ExportConfirmationPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.DateFormatPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.PageSetupPanelDescriptor,  org.dbbrowser.ui.helper.exporthelper.wizard.paneldescriptors.OverviewPanelDescriptor,
WizardPanelDescriptor
public class WizardPanelDescriptor (Code)
A base descriptor class used to reference a Component panel for the Wizard, as well as provide general rules as to how the panel should behave.

Inner Class :static class FinishIdentifier

Field Summary
final public static  FinishIdentifierFINISH
     Identifier returned by getNextPanelDescriptor() to indicate that this is the last panel and the text of the 'Next' button should change to 'Finish'.

Constructor Summary
public  WizardPanelDescriptor()
     Default constructor.
public  WizardPanelDescriptor(Object id, Component panel)
     Constructor which accepts both the Object-based identifier and a reference to the Component class which makes up the panel.

Method Summary
public  voidaboutToDisplayPanel()
     Override this method to provide functionality that will be performed just before the panel is to be displayed.
public  voidaboutToHidePanel()
     Override this method to perform functionality just before the panel is to be hidden.
public  voiddisplayingPanel()
     Override this method to perform functionality when the panel itself is displayed.
public  ObjectgetBackPanelDescriptor()
     Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Back button is pressed.
public  ObjectgetNextPanelDescriptor()
     Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Next button is pressed.
final public  ComponentgetPanelComponent()
     Returns to java.awt.Component that serves as the actual panel.
final public  ObjectgetPanelDescriptorIdentifier()
     Returns the unique Object-based identifier for this panel descriptor.
final public  WizardgetWizard()
     Returns a reference to the Wizard component.
public  WizardModelgetWizardModel()
     Returns a reference to the current WizardModel for this Wizard component.
final public  voidsetPanelComponent(Component panel)
    
final public  voidsetPanelDescriptorIdentifier(Object id)
     Sets the Object-based identifier for this panel.
final  voidsetWizard(Wizard w)
    

Field Detail
FINISH
final public static FinishIdentifier FINISH(Code)
Identifier returned by getNextPanelDescriptor() to indicate that this is the last panel and the text of the 'Next' button should change to 'Finish'.




Constructor Detail
WizardPanelDescriptor
public WizardPanelDescriptor()(Code)
Default constructor. The id and the Component panel must be set separately.



WizardPanelDescriptor
public WizardPanelDescriptor(Object id, Component panel)(Code)
Constructor which accepts both the Object-based identifier and a reference to the Component class which makes up the panel.
Parameters:
  id - Object-based identifier
Parameters:
  panel - A class which extends java.awt.Component that will be inserted as apanel into the wizard dialog.




Method Detail
aboutToDisplayPanel
public void aboutToDisplayPanel()(Code)
Override this method to provide functionality that will be performed just before the panel is to be displayed.



aboutToHidePanel
public void aboutToHidePanel()(Code)
Override this method to perform functionality just before the panel is to be hidden.



displayingPanel
public void displayingPanel()(Code)
Override this method to perform functionality when the panel itself is displayed.



getBackPanelDescriptor
public Object getBackPanelDescriptor()(Code)
Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Back button is pressed. Note that this method is only called when the button is actually pressed, so that the panel can change the previous panel's identifier dynamically at runtime if necessary. Return null if the button should be disabled. Object-based identifier



getNextPanelDescriptor
public Object getNextPanelDescriptor()(Code)
Override this class to provide the Object-based identifier of the panel that the user should traverse to when the Next button is pressed. Note that this method is only called when the button is actually pressed, so that the panel can change the next panel's identifier dynamically at runtime if necessary. Return null if the button should be disabled. Return FinishIdentfier if the button text should change to 'Finish' and the dialog should end. Object-based identifier.



getPanelComponent
final public Component getPanelComponent()(Code)
Returns to java.awt.Component that serves as the actual panel. A reference to the java.awt.Component that serves as the panel



getPanelDescriptorIdentifier
final public Object getPanelDescriptorIdentifier()(Code)
Returns the unique Object-based identifier for this panel descriptor. The Object-based identifier



getWizard
final public Wizard getWizard()(Code)
Returns a reference to the Wizard component. The Wizard class hosting this descriptor.



getWizardModel
public WizardModel getWizardModel()(Code)
Returns a reference to the current WizardModel for this Wizard component. The current WizardModel for this Wizard component.



setPanelComponent
final public void setPanelComponent(Component panel)(Code)
Sets the panel's component as a class that extends java.awt.Component
Parameters:
  panel - java.awt.Component which serves as the wizard panel



setPanelDescriptorIdentifier
final public void setPanelDescriptorIdentifier(Object id)(Code)
Sets the Object-based identifier for this panel. The identifier must be unique from all the other identifiers in the panel.
Parameters:
  id - Object-based identifier for this panel.



setWizard
final void setWizard(Wizard w)(Code)



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.