Java Doc for ProcessingContext.java in  » Report » pentaho-report » org » jfree » report » function » 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 » Report » pentaho report » org.jfree.report.function 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.jfree.report.function.ProcessingContext

All known Subclasses:   org.jfree.report.layout.output.DefaultProcessingContext,
ProcessingContext
public interface ProcessingContext (Code)
The processing context hold information about the progress of the report processing and contains global properties used during the report processing.
author:
   Thomas Morgner




Method Summary
public  ConfigurationgetConfiguration()
     Returns the initial master-report's configuration.
public  ResourceKeygetContentBase()
     Returns the content base of the initial master-report.
public  StringgetExportDescriptor()
     Returns the export descriptor from the output-target.
public  FormulaContextgetFormulaContext()
     Returns the formula context of this report process.
public  LayoutSupportgetLayoutSupport()
     Returns the layout support.
public  intgetProcessingLevel()
     The processing-level is used for dependency tracking.
public  intgetProgressLevel()
     Returns the current progress level.
public  intgetProgressLevelCount()
     Returns the total number of different activities the report will process.
public  ResourceBundleFactorygetResourceBundleFactory()
     The resource-bundle factory encapsulates all locale specific resources and provides a system-independent way to create Resource-Bundles.
public  ResourceManagergetResourceManager()
     Returns the initial master-report's resource manager.
public  booleanisPrepareRun()
     Returns true, if the current processing run is a prepare-run.



Method Detail
getConfiguration
public Configuration getConfiguration()(Code)
Returns the initial master-report's configuration. The initial configuration is used for all subreports. the global report configuration.



getContentBase
public ResourceKey getContentBase()(Code)
Returns the content base of the initial master-report. The content-base resource-key can be used to resolve relative paths. the initial content base.



getExportDescriptor
public String getExportDescriptor()(Code)
Returns the export descriptor from the output-target. the export descriptor string.
See Also:   org.jfree.report.layout.output.OutputProcessorMetaData.getExportDescriptor



getFormulaContext
public FormulaContext getFormulaContext()(Code)
Returns the formula context of this report process. The formula context is required to evaluate inline expression with LibFormula. the current formula context.



getLayoutSupport
public LayoutSupport getLayoutSupport()(Code)
Returns the layout support. The layout support allows functions to do basic layouting. the layout support.



getProcessingLevel
public int getProcessingLevel()(Code)
The processing-level is used for dependency tracking. A function that precomputes values should use this level value to determine its current activity. the processing level.
See Also:   Expression.getDependencyLevel



getProgressLevel
public int getProgressLevel()(Code)
Returns the current progress level. The number itself has no meaning and is only used to measure the progress of the report processing. the progress level.



getProgressLevelCount
public int getProgressLevelCount()(Code)
Returns the total number of different activities the report will process. the number of different progress levels.



getResourceBundleFactory
public ResourceBundleFactory getResourceBundleFactory()(Code)
The resource-bundle factory encapsulates all locale specific resources and provides a system-independent way to create Resource-Bundles. This returns the initial master-report's resource-bundle factory. the report's resource-bundle factory.



getResourceManager
public ResourceManager getResourceManager()(Code)
Returns the initial master-report's resource manager. The resource manager can be used to load external resources in a system-independent way. the master-report's resourcemanager.



isPrepareRun
public boolean isPrepareRun()(Code)
Returns true, if the current processing run is a prepare-run. A prepare run does not generate content, but will be needed to compute the layout. This flag can be used to possibly optimize the content computation. If in doubt on how to interpret the flag, then please ignore this flag. The process may be slightly slower, but at least it will work all the time. true, if this is a prepare-run, false if this is a content processing run.



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