/*---------------- FILE HEADER --------------------------------------- This file is part of Geoide. Copyright (C) 2005-2006 by: IDgis B.V. http://www.idgis.nl This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact: Herman Assink IDgis bv P.O. Box 15 7450 AA Holten The Netherlands E-Mail: herman.assink@idgis.nl * @version 1.4.0 * @author IDgis team * ------------------------------------------------------------------------*/ class nl.idgis.giclient.gis.Report { private var name:String = null; private var path:String = null; private var urlprefix:String = null; private var title:String = null; private var description:String = null; private var parameterColumn:String = null; private var selectString:String = null; public function Report(name:String, path:String, urlprefix:String, title:String, description:String, parameterColumn:String, selectString:String) { this.name = name; this.path = path; this.urlprefix = urlprefix; this.title = title; this.description = description; this.parameterColumn = parameterColumn; this.selectString = selectString; } /** Geef de naam van het rapport */ public function getName():String { return name; } /** return path of the report */ public function getPath():String { return path; } /** Geef de urlprefix van het rapport */ public function getUrlprefix():String { return urlprefix; } /** Geef de title van het rapport */ public function getTitle():String { return title; } /** Geef de omschrijving van het rapport */ public function getDescription():String { return description; } public function getParameterColumn():String { return parameterColumn; } public function getSelectString():String { return selectString; } }