tools.dynamia.zk.reports.BIRTReportEditorPage Maven / Gradle / Ivy
/*
* Copyright (C) 2009 - 2019 Dynamia Soluciones IT S.A.S - NIT 900302344-1
* Colombia - South America
* All Rights Reserved.
*
* DynamiaTools is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License (LGPL v3) as
* published by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DynamiaTools 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with DynamiaTools. If not, see .
*/
package tools.dynamia.zk.reports;
import tools.dynamia.navigation.RendereablePage;
import tools.dynamia.zk.reports.ui.BIRTReportEditor;
public class BIRTReportEditorPage extends RendereablePage {
/**
*
*/
private static final long serialVersionUID = -4954057497249174494L;
public BIRTReportEditorPage() {
super();
}
public BIRTReportEditorPage(String id, String name) {
super(id, name, "");
}
@Override
public BIRTReportEditor renderPage() {
return new BIRTReportEditor();
}
}