Java Doc for Page.java in  » Portal » jetspeed-2.1.3 » org » apache » jetspeed » om » page » 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 » Portal » jetspeed 2.1.3 » org.apache.jetspeed.om.page 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.jetspeed.om.page.Page

All known Subclasses:   org.apache.jetspeed.om.page.psml.PageImpl,  org.apache.jetspeed.om.page.impl.PageImpl,
Page
public interface Page extends Document,java.io.Serializable(Code)
This interface represents a complete page document used by Jetspeed to layout a user-customizable portal page.
version:
   $Id: Page.java 516448 2007-03-09 16:25:47Z ate $


Field Summary
 StringDOCUMENT_TYPE
    


Method Summary
 StringgetDefaultDecorator(String fragmentType)
    
 StringgetEffectiveDefaultDecorator(String fragmentType)
     Returns the name of the default decorator as set here or in parent folders that applies in this page to fragments of the specified type.
 FragmentgetFragmentById(String id)
     Retrieves the fragment contained within this page, with the specified Id.
 ListgetFragmentsByName(String name)
     Retrieves the fragments contained within this page, with the specified name.
 ListgetMenuDefinitions()
    
 FragmentgetRootFragment()
     Retrieves the top level fragment of this page.
 StringgetSkin()
     Returns the name of the default skin that applies to this page.
 MenuDefinitionnewMenuDefinition()
    
 MenuExcludeDefinitionnewMenuExcludeDefinition()
    
 MenuIncludeDefinitionnewMenuIncludeDefinition()
    
 MenuOptionsDefinitionnewMenuOptionsDefinition()
    
 MenuSeparatorDefinitionnewMenuSeparatorDefinition()
    
 FragmentremoveFragmentById(String id)
     Removes the fragment contained within this page, with the specified Id.
 voidsetDefaultDecorator(String decoratorName, String fragmentType)
     Modifies the default decorator for the specified fragment type.
 voidsetMenuDefinitions(List definitions)
    
 voidsetRootFragment(Fragment fragment)
     Sets the top level fragment of this page.
 voidsetSkin(String skinName)
     Modifies the skin for this page.

Field Detail
DOCUMENT_TYPE
String DOCUMENT_TYPE(Code)





Method Detail
getDefaultDecorator
String getDefaultDecorator(String fragmentType)(Code)
Returns the name of the default decorator that applies in this page to fragments of the specified type
Parameters:
  fragmentType - the type of fragment considered the decorator name for the selected type



getEffectiveDefaultDecorator
String getEffectiveDefaultDecorator(String fragmentType)(Code)
Returns the name of the default decorator as set here or in parent folders that applies in this page to fragments of the specified type.
Parameters:
  fragmentType - the type of fragment considered the decorator name for the selected type



getFragmentById
Fragment getFragmentById(String id)(Code)
Retrieves the fragment contained within this page, with the specified Id.
Parameters:
  id - the fragment id to look for the found Fragment object or null if not found



getFragmentsByName
List getFragmentsByName(String name)(Code)
Retrieves the fragments contained within this page, with the specified name.
Parameters:
  name - the fragment name to look for the list of found Fragment objects or null if not found



getMenuDefinitions
List getMenuDefinitions()(Code)
getMenuDefinitions - get list of menu definitions definition list



getRootFragment
Fragment getRootFragment()(Code)
Retrieves the top level fragment of this page. This Fragment should never be null. the base Fragment object for this page.



getSkin
String getSkin()(Code)
Returns the name of the default skin that applies to this page. the page default skin name



newMenuDefinition
MenuDefinition newMenuDefinition()(Code)
newMenuDefinition - creates a new empty menu definition a newly created MenuDefinition object for use in Page



newMenuExcludeDefinition
MenuExcludeDefinition newMenuExcludeDefinition()(Code)
newMenuExcludeDefinition - creates a new empty menu exclude definition a newly created MenuExcludeDefinition object for use in Page



newMenuIncludeDefinition
MenuIncludeDefinition newMenuIncludeDefinition()(Code)
newMenuIncludeDefinition - creates a new empty menu include definition a newly created MenuIncludeDefinition object for use in Page



newMenuOptionsDefinition
MenuOptionsDefinition newMenuOptionsDefinition()(Code)
newMenuOptionsDefinition - creates a new empty menu options definition a newly created MenuOptionsDefinition object for use in Page



newMenuSeparatorDefinition
MenuSeparatorDefinition newMenuSeparatorDefinition()(Code)
newMenuSeparatorDefinition - creates a new empty menu separator definition a newly created MenuSeparatorDefinition object for use in Page



removeFragmentById
Fragment removeFragmentById(String id)(Code)
Removes the fragment contained within this page, with the specified Id.
Parameters:
  id - the fragment id to remove the removed Fragment object or null if not found



setDefaultDecorator
void setDefaultDecorator(String decoratorName, String fragmentType)(Code)
Modifies the default decorator for the specified fragment type.
Parameters:
  decoratorName - the name of the new decorator for the type
Parameters:
  fragmentType - the type of fragment considered



setMenuDefinitions
void setMenuDefinitions(List definitions)(Code)
setMenuDefinitions - set list of menu definitions
Parameters:
  definitions - definition list



setRootFragment
void setRootFragment(Fragment fragment)(Code)
Sets the top level fragment of this page. This Fragment should never be null. the base Fragment object for this page.



setSkin
void setSkin(String skinName)(Code)
Modifies the skin for this page.
Parameters:
  skinName - the name of the new skin for the page



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