Java Doc for Page.java in  » UML » MetaBoss » com » metaboss » enterprise » xi » enhydrabarracuda » 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 » UML » MetaBoss » com.metaboss.enterprise.xi.enhydrabarracuda 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.metaboss.enterprise.xi.enhydrabarracuda.Page

All known Subclasses:   com.metaboss.enterprise.xi.enhydrabarracuda.GenericPage,
Page
abstract public class Page (Code)
This class represents a page of the web application Each instance of the page is a single html document rendered as the result of particular navigation move. Page owns some controls some forms (which in turn own some controls too).




Method Summary
public static  voidbindDocument(Class pDocumentClass, Class pPageClass)
     Binds document to this page.
public static  voidbindFormAction(Class pDocumentClass, String pFormResourceId, Class pActionClass)
    
public static  voidbindFormWidget(Class pDocumentClass, String pFormResourceId, String pWidgetResourceId, Class pWidgetClass)
    
public static  voidbindWidget(Class pDocumentClass, String pWidgetResourceId, Class pWidgetClass)
    
public static  PagecreateInstance(Class pResourceClass, Application pApplication, Application.NavigationMove pNavigationMove)
     This creator fully creates the instance of the page.
public  ApplicationgetApplication()
    
 HTMLElementgetBoundDocumentElement(String pWidgetResourceId)
    
public static  ClassgetFormActionClass(String pPageId, String pFormId)
    
public  HTMLDocumentgetHTMLDocument()
    
public  StringgetMandatoryParameter(String pParameterName)
     Returns the value of a navigation parameter as a String, or throws exception if the specified parameter does not exist.
public static  StringgetPageUrl(String pPageId)
    
public  StringgetParameter(String pParameterName, String pDefaultValue)
     Returns the value of a navigation parameter as a String, or specified default value if the parameter does not exist.
public static  ClassgetWidgetClass(String pPageId, String pWidgetId)
    
public  WidgetModelgetWidgetModel(String pWidgetResourceId)
    
public  voidinitialise()
     This lifecycle method is expected to initialise the page.
public  voidputWidgetModel(String pWidgetResourceId, WidgetModel pWidgetModel)
    
public  voidrender()
    
public  voidsignAnchors()
     Iterates through all anchors and forms, finds the ones which look like belonging to the application and signs them.



Method Detail
bindDocument
public static void bindDocument(Class pDocumentClass, Class pPageClass)(Code)
Binds document to this page.



bindFormAction
public static void bindFormAction(Class pDocumentClass, String pFormResourceId, Class pActionClass)(Code)
Binds action class to the form on this



bindFormWidget
public static void bindFormWidget(Class pDocumentClass, String pFormResourceId, String pWidgetResourceId, Class pWidgetClass)(Code)
Binds control to this page



bindWidget
public static void bindWidget(Class pDocumentClass, String pWidgetResourceId, Class pWidgetClass)(Code)
Binds control to this page



createInstance
public static Page createInstance(Class pResourceClass, Application pApplication, Application.NavigationMove pNavigationMove) throws IllegalAccessException, InstantiationException, UIException(Code)
This creator fully creates the instance of the page.
Parameters:
  pPredescessor - optional predescessor page



getApplication
public Application getApplication()(Code)
Getter for the application



getBoundDocumentElement
HTMLElement getBoundDocumentElement(String pWidgetResourceId)(Code)
Returns the HTML Element this control is bound to



getFormActionClass
public static Class getFormActionClass(String pPageId, String pFormId)(Code)
Returns class of the action bound to the specified form



getHTMLDocument
public HTMLDocument getHTMLDocument()(Code)
Retrieves HTMLDocument in its current form



getMandatoryParameter
public String getMandatoryParameter(String pParameterName) throws UIInputValidationException, UIUnexpectedProgramConditionException(Code)
Returns the value of a navigation parameter as a String, or throws exception if the specified parameter does not exist.



getPageUrl
public static String getPageUrl(String pPageId)(Code)
Returns URL of the page with specified Id



getParameter
public String getParameter(String pParameterName, String pDefaultValue) throws UIUnexpectedProgramConditionException(Code)
Returns the value of a navigation parameter as a String, or specified default value if the parameter does not exist.



getWidgetClass
public static Class getWidgetClass(String pPageId, String pWidgetId)(Code)
Returns class of the widget with specified id on specified page



getWidgetModel
public WidgetModel getWidgetModel(String pWidgetResourceId)(Code)
Model for the requested widget or null if nothing found



initialise
public void initialise() throws UIException(Code)
This lifecycle method is expected to initialise the page. This mostly means setting up controls and making some service calls



putWidgetModel
public void putWidgetModel(String pWidgetResourceId, WidgetModel pWidgetModel)(Code)
Stores the widget values for the particular widget



render
public void render() throws UIUnexpectedProgramConditionException(Code)
This lifecycle method is expected to render dynamic parts of the page



signAnchors
public void signAnchors()(Code)
Iterates through all anchors and forms, finds the ones which look like belonging to the application and signs them. Signing means making sure that all system parameters are present



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.