| it.businesslogic.ireport.IReportConnectionEditor
All known Subclasses: it.businesslogic.ireport.connection.gui.CSVDataSourceConnectionEditor, it.businesslogic.ireport.connection.gui.JRCustomDataSourceConnectionEditor, it.businesslogic.ireport.connection.gui.JavaBeanDataSourceConnectionEditor, it.businesslogic.ireport.connection.gui.JRDataSourceProviderConnectionEditor, it.businesslogic.ireport.connection.gui.JREmptyDataSourceConnectionEditor, it.businesslogic.ireport.connection.gui.EJBQLConnectionEditor, it.businesslogic.ireport.connection.gui.JREmptyDataSourceConnectionEditor_1, it.businesslogic.ireport.connection.gui.JRHibernateConnectionEditor, it.businesslogic.ireport.connection.gui.BasicIReportConnectionEditor, it.businesslogic.ireport.connection.gui.JRSpringLoadedHibernateConnectionEditor, it.businesslogic.ireport.connection.gui.JRXMLDataSourceConnectionEditor, it.businesslogic.ireport.plugin.jrx.JRXMLDataSourceConnectionEditor, it.businesslogic.ireport.connection.gui.MondrianConnectionEditor, it.businesslogic.ireport.connection.gui.JDBCConnectionEditor, it.businesslogic.ireport.connection.gui.QueryExecuterConnectionEditor, it.businesslogic.ireport.connection.gui.XMLADataSourceConnectionEditor,
IReportConnectionEditor | public interface IReportConnectionEditor (Code) | | A IReportConnectionEditor class provides a complete custom GUI for customizing a target IReportConnection.
Each IReportConnectionEditor should inherit from the java.awt.Component class so it can be instantiated inside an AWT dialog or panel.
Each IReportConnectionEditor should have a null constructor.
author: gtoffoli |
getIReportConnection | public IReportConnection getIReportConnection()(Code) | | This method is called when the user completes to edit the datasource or when a datasource test is required.
IReportConnection modified. IT can be the same instance get in input with setIReportConnection or a new one. |
setIReportConnection | public void setIReportConnection(IReportConnection c)(Code) | | Set the IReportConnection to edit. Actually it is a copy of the original IReportConnection.
It can be modifed by the user interface.
The copy of an IReportConnection is done instancing a new class of the same type and loading
the properties stored by the first object
Parameters: c - IReportConnection to edit |
|
|