Java Doc for TilesUtil.java in  » Web-Framework » struts-1.3.8 » org » apache » struts » tiles » 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 » Web Framework » struts 1.3.8 » org.apache.struts.tiles 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.struts.tiles.TilesUtil

All known Subclasses:   org.apache.struts.tiles.DefinitionsUtil,
TilesUtil
public class TilesUtil (Code)
Class containing utility methods for Tiles. Methods of this class are static and thereby accessible from anywhere. The underlying implementation can be changed with TilesUtil.setTilesUtil(TilesUtilImpl) .
Real implementation classes should derive from the TilesUtilImpl class.
Some methods are specified to throw the UnsupportedOperationException if the underlying implementation doesn't support the operation.


Field Summary
protected static  Loglog
     Commons Logging instance.
protected static  TilesUtilImpltilesUtilImpl
    


Method Summary
public static  DefinitionsFactorycreateDefinitionsFactory(ServletContext servletContext, DefinitionsFactoryConfig factoryConfig)
     Create Definition factory from specified configuration object. Create a ConfigurableDefinitionsFactory and initialize it with the configuration object.
public static  voiddoForward(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)
     Do a forward using request dispatcher.
public static  voiddoInclude(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext)
     Do an include using request dispatcher.
public static  voiddoInclude(String uri, PageContext pageContext)
     Do an include using PageContext.include().
public static  voiddoInclude(String uri, PageContext pageContext, boolean flush)
     Do an include using PageContext.include().
public static  ComponentDefinitiongetDefinition(String definitionName, ServletRequest request, ServletContext servletContext)
     Get a definition by its name.
public static  DefinitionsFactorygetDefinitionsFactory(ServletRequest request, ServletContext servletContext)
     Get definition factory from appropriate servlet context.
public static  TilesUtilImplgetTilesUtil()
     Get the real implementation.
static  booleanisTilesUtilImplSet()
     Getter to know if the underlying implementation is already set to another value than the default value.
public static  voidsetTilesUtil(TilesUtilImpl tilesUtil)
     Set the real implementation.
protected static  voidtestReset()
     Reset internal state.

Field Detail
log
protected static Log log(Code)
Commons Logging instance.



tilesUtilImpl
protected static TilesUtilImpl tilesUtilImpl(Code)
The implementation of tilesUtilImpl





Method Detail
createDefinitionsFactory
public static DefinitionsFactory createDefinitionsFactory(ServletContext servletContext, DefinitionsFactoryConfig factoryConfig) throws DefinitionsFactoryException(Code)
Create Definition factory from specified configuration object. Create a ConfigurableDefinitionsFactory and initialize it with the configuration object. This later can contain the factory classname to use. Factory is made accessible from tags.

Fallback of several factory creation methods.
Parameters:
  servletContext - Servlet Context passed to newly created factory.
Parameters:
  factoryConfig - Configuration object passed to factory. newly created factory of type ConfigurableDefinitionsFactory.
throws:
  DefinitionsFactoryException - If an error occur while initializing factory




doForward
public static void doForward(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) throws IOException, ServletException(Code)
Do a forward using request dispatcher. This method is used by the Tiles package anytime a forward is required.
Parameters:
  uri - Uri or Definition name to forward.
Parameters:
  request - Current page request.
Parameters:
  response - Current page response.
Parameters:
  servletContext - Current servlet context.



doInclude
public static void doInclude(String uri, HttpServletRequest request, HttpServletResponse response, ServletContext servletContext) throws IOException, ServletException(Code)
Do an include using request dispatcher. This method is used by the Tiles package when an include is required. The Tiles package can use indifferently any form of this method.
Parameters:
  uri - Uri or Definition name to forward.
Parameters:
  request - Current page request.
Parameters:
  response - Current page response.
Parameters:
  servletContext - Current servlet context.



doInclude
public static void doInclude(String uri, PageContext pageContext) throws IOException, ServletException(Code)
Do an include using PageContext.include(). This method is used by the Tiles package when an include is required. The Tiles package can use indifferently any form of this method.
Parameters:
  uri - Uri or Definition name to forward.
Parameters:
  pageContext - Current page context.



doInclude
public static void doInclude(String uri, PageContext pageContext, boolean flush) throws IOException, ServletException(Code)
Do an include using PageContext.include(). This method is used by the Tiles package when an include is required. The Tiles package can use indifferently any form of this method.
Parameters:
  uri - Uri or Definition name to forward.
Parameters:
  flush - If the writer should be flushed before the include
Parameters:
  pageContext - Current page context.



getDefinition
public static ComponentDefinition getDefinition(String definitionName, ServletRequest request, ServletContext servletContext) throws FactoryNotFoundException, DefinitionsFactoryException(Code)
Get a definition by its name. First, retrieve definition factory and then get requested definition. Throw appropriate exception if definition or definition factory is not found.
Parameters:
  definitionName - Name of requested definition.
Parameters:
  request - Current servelet request.
Parameters:
  servletContext - current servlet context.
throws:
  FactoryNotFoundException - Can't find definition factory.
throws:
  DefinitionsFactoryException - General error in factory while getting definition.
throws:
  NoSuchDefinitionException - No definition found for specified name



getDefinitionsFactory
public static DefinitionsFactory getDefinitionsFactory(ServletRequest request, ServletContext servletContext)(Code)
Get definition factory from appropriate servlet context. Definitions factory or null if not found.



getTilesUtil
public static TilesUtilImpl getTilesUtil()(Code)
Get the real implementation. The underlying implementation object.



isTilesUtilImplSet
static boolean isTilesUtilImplSet()(Code)
Getter to know if the underlying implementation is already set to another value than the default value. true if TilesUtil.setTilesUtil has already been called.



setTilesUtil
public static void setTilesUtil(TilesUtilImpl tilesUtil)(Code)
Set the real implementation. This method should be called only once. Successive calls have no effect.
Parameters:
  tilesUtil - The implementaion.



testReset
protected static void testReset()(Code)
Reset internal state. This method is used by test suites to reset the class to its original state.



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.