Java Doc for FieldsProvider.java in  » Report » iReport-2.0.5 » it » businesslogic » ireport » 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 » iReport 2.0.5 » it.businesslogic.ireport 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


it.businesslogic.ireport.FieldsProvider

All known Subclasses:   it.businesslogic.ireport.data.HQLFieldsProvider,  it.businesslogic.ireport.data.XMLFieldsProvider,  it.businesslogic.ireport.data.MDXFieldsProvider,  it.businesslogic.ireport.data.EJBQLFieldsProvider,  it.businesslogic.ireport.data.SQLFieldsProvider,  it.businesslogic.ireport.examples.queryexecuter.CSVFieldsProvider,
FieldsProvider
public interface FieldsProvider (Code)

author:
   gtoffoli




Method Summary
public  StringdesignQuery(IReportConnection con, String query, ReportQueryDialog reportQueryDialog)
     This method is used to run a query designer for the specific language.
Parameters:
  con - the IReportConnection active in iReport.
public  FieldsProviderEditorgetEditorComponent(ReportQueryDialog reportQueryDialog)
     The component that will stay on the right of the query panel.
public  JRField[]getFields(IReportConnection con, JRDataset reportDataset, Map parameters)
     Returns the fields that are available from a query of a specific language The provider can use the passed in report to extract some additional configuration information such as report properties.
public  booleanhasEditorComponent()
    
public  booleanhasQueryDesigner()
    
public  booleansupportsAutomaticQueryExecution()
     Returns true if the getFields can be run in a backgroiund thread each time the user changes the query.
public  booleansupportsGetFieldsOperation()
     Returns true if the provider supports the FieldsProvider.getFields(IReportConnection,JRDataset,Map) getFields operation.



Method Detail
designQuery
public String designQuery(IReportConnection con, String query, ReportQueryDialog reportQueryDialog) throws JRException, UnsupportedOperationException(Code)
This method is used to run a query designer for the specific language.
Parameters:
  con - the IReportConnection active in iReport.
Parameters:
  query - the query to modify
Parameters:
  reportQueryDialog - the parent reportQueryDialog. It can be used to get all (sub)dataset informationswith reportQueryDialog.getSubDataset();



getEditorComponent
public FieldsProviderEditor getEditorComponent(ReportQueryDialog reportQueryDialog)(Code)
The component that will stay on the right of the query panel. To listen for query changes, the component must implement the interface FieldsProviderEditor. The component will be visible only when a queryCahnged is succesfully executed. The component can store the reference to the report query dialog in which it will appear. The editor can



getFields
public JRField[] getFields(IReportConnection con, JRDataset reportDataset, Map parameters) throws JRException, UnsupportedOperationException(Code)
Returns the fields that are available from a query of a specific language The provider can use the passed in report to extract some additional configuration information such as report properties. The IReportConnection object can be used to execute the query.
Parameters:
  con - the IReportConnection active in iReport.
Parameters:
  the - JRDataset that will be filled using the data source created by this provider.The passed in report can be null. That means that no compiled report is available yet.
Parameters:
  parameters - map containing the interpreted default value of each parameter a non null fields array. If there are no fields then an empty array must be returned.
throws:
  UnsupportedOperationException - is the method is not supported
throws:
  JRException - if an error occurs.



hasEditorComponent
public boolean hasEditorComponent()(Code)
Returns true if the FieldsProvider can run an own editor



hasQueryDesigner
public boolean hasQueryDesigner()(Code)
Returns true if the FieldsProvider can run an own query designer



supportsAutomaticQueryExecution
public boolean supportsAutomaticQueryExecution()(Code)
Returns true if the getFields can be run in a backgroiund thread each time the user changes the query. This approach can not be valid for fieldsProviders that require much time to return the list of fields.



supportsGetFieldsOperation
public boolean supportsGetFieldsOperation()(Code)
Returns true if the provider supports the FieldsProvider.getFields(IReportConnection,JRDataset,Map) getFields operation. By returning true in this method the data source provider indicates that it is able to introspect the data source and discover the available fields. true if the getFields() operation is supported.



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