Java Doc for InvokeContext.java in  » Content-Management-System » apache-lenya-2.0 » org » apache » cocoon » components » treeprocessor » 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 » Content Management System » apache lenya 2.0 » org.apache.cocoon.components.treeprocessor 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.cocoon.components.treeprocessor.InvokeContext

InvokeContext
public class InvokeContext extends AbstractLogEnabled implements Recomposable,Disposable(Code)
The invocation context of ProcessingNodes.

This class serves two purposes:


author:
   Sylvain Wallez
author:
   Carsten Ziegeler
author:
   Torsten Curdt
version:
   $Id: InvokeContext.java 433543 2006-08-22 06:22:54Z crossley $


Field Summary
protected  SitemapErrorHandlererrorHandler
     The error handler for the pipeline.
protected  ComponentSelectorpipelineSelector
    
protected  ProcessingPipelineprocessingPipeline
    
protected  StringprocessingPipelineName
    
protected  MapprocessingPipelineObjectModel
    
protected  MapprocessingPipelineParameters
    
protected  Redirectorredirector
    

Constructor Summary
public  InvokeContext()
     Create an InvokeContext without existing pipelines.
public  InvokeContext(boolean isBuildingPipelineOnly)
    

Method Summary
public  voidcompose(ComponentManager manager)
    
public  voiddispose()
     Release the pipelines, if any, if they were looked up by this context.
protected  voiddumpParameters()
    
final public  MapgetMapByAnchor(String anchor)
    
final public  ListgetMapStack()
     Get the current Map stack used to resolve expressions.
public  ProcessingPipelinegetProcessingPipeline()
    
public  RedirectorgetRedirector()
     Get the redirector to be used by nodes that need it.
public  voidinform(String pipelineName, Map parameters, Map objectModel)
    
final public  booleanisBuildingPipelineOnly()
    
public  booleanpipelineIsSet()
    
final public  voidpopMap()
     Pop the topmost element of the current Map stack.
final public  voidpushMap(String anchorName, Map map)
     Push a Map on top of the current Map stack.
public  voidrecompose(ComponentManager manager)
    
public  voidsetErrorHandler(SitemapErrorHandler handler)
     Set the error handler for the pipeline.
public  voidsetProcessingPipeline(ProcessingPipeline pipeline)
    
public  voidsetRedirector(Redirector redirector)
     Set the redirector to be used by nodes that need it.

Field Detail
errorHandler
protected SitemapErrorHandler errorHandler(Code)
The error handler for the pipeline.



pipelineSelector
protected ComponentSelector pipelineSelector(Code)
The Selector for the processing pipeline



processingPipeline
protected ProcessingPipeline processingPipeline(Code)
The ProcessingPipeline used



processingPipelineName
protected String processingPipelineName(Code)
The name of the processing pipeline component



processingPipelineObjectModel
protected Map processingPipelineObjectModel(Code)
The object model used to resolve processingPipelineParameters



processingPipelineParameters
protected Map processingPipelineParameters(Code)
The parameters for the processing pipeline



redirector
protected Redirector redirector(Code)
The redirector




Constructor Detail
InvokeContext
public InvokeContext()(Code)
Create an InvokeContext without existing pipelines. This also means the current request is external.



InvokeContext
public InvokeContext(boolean isBuildingPipelineOnly)(Code)
Create an InvokeContext




Method Detail
compose
public void compose(ComponentManager manager) throws ComponentException(Code)
Composable Interface



dispose
public void dispose()(Code)
Release the pipelines, if any, if they were looked up by this context.



dumpParameters
protected void dumpParameters()(Code)
Dumps all sitemap parameters to log



getMapByAnchor
final public Map getMapByAnchor(String anchor)(Code)
Get the result Map by anchor name



getMapStack
final public List getMapStack()(Code)
Get the current Map stack used to resolve expressions.



getProcessingPipeline
public ProcessingPipeline getProcessingPipeline() throws Exception(Code)
Get the current ProcessingPipeline



getRedirector
public Redirector getRedirector()(Code)
Get the redirector to be used by nodes that need it. the redirector



inform
public void inform(String pipelineName, Map parameters, Map objectModel)(Code)
Informs the context about a new pipeline section



isBuildingPipelineOnly
final public boolean isBuildingPipelineOnly()(Code)
Are we building a pipeline (and not executing it) ?



pipelineIsSet
public boolean pipelineIsSet()(Code)
Determines if the Pipeline been set for this context



popMap
final public void popMap()(Code)
Pop the topmost element of the current Map stack.



pushMap
final public void pushMap(String anchorName, Map map)(Code)
Push a Map on top of the current Map stack.



recompose
public void recompose(ComponentManager manager) throws ComponentException(Code)
Recomposable interface



setErrorHandler
public void setErrorHandler(SitemapErrorHandler handler)(Code)
Set the error handler for the pipeline.



setProcessingPipeline
public void setProcessingPipeline(ProcessingPipeline pipeline)(Code)
Set the processing pipeline for sub-sitemaps



setRedirector
public void setRedirector(Redirector redirector)(Code)
Set the redirector to be used by nodes that need it.
Parameters:
  redirector - the redirector



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