/*
* iReport - Visual Designer for JasperReports.
* Copyright (C) 2002 - 2009 Jaspersoft Corporation. All rights reserved.
* http://www.jaspersoft.com
*
* Unless you have purchased a commercial license agreement from Jaspersoft,
* the following license terms apply:
*
* This program is part of iReport.
*
* iReport is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* iReport is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with iReport. If not, see <http://www.gnu.org/licenses/>.
*/
package com.jaspersoft.ireport.designer.data.fieldsproviders;
import com.jaspersoft.ireport.designer.FieldsProvider;
import com.jaspersoft.ireport.designer.FieldsProviderEditor;
import com.jaspersoft.ireport.designer.IReportConnection;
import com.jaspersoft.ireport.designer.data.ReportQueryDialog;
import com.jaspersoft.ireport.designer.data.fieldsproviders.xml.XMLFieldMappingEditor;
import java.util.Map;
import net.sf.jasperreports.engine.JRDataset;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRField;
/**
*
* @author gtoffoli
*/
public class XMLFieldsProvider implements FieldsProvider {
private XMLFieldMappingEditor editor = null;
/** Creates a new instance of SQLFieldsProvider */
public XMLFieldsProvider() {
}
/**
* Returns true if the provider supports the {@link #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.
*
* @return true if the getFields() operation is supported.
*/
public boolean supportsGetFieldsOperation() {
return false;
}
public JRField[] getFields(IReportConnection con, JRDataset reportDataset, Map parameters) throws JRException, UnsupportedOperationException {
return null;
}
public boolean supportsAutomaticQueryExecution() {
return true;
}
public boolean hasQueryDesigner() {
return false;
}
public boolean hasEditorComponent() {
return true;
}
public String designQuery(IReportConnection con, String query, ReportQueryDialog reportQueryDialog) throws JRException, UnsupportedOperationException {
return query;
}
public FieldsProviderEditor getEditorComponent(ReportQueryDialog reportQueryDialog) {
if (editor == null)
{
editor = new XMLFieldMappingEditor(reportQueryDialog);
}
return editor;
}
}
|