/*---------------- 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.query.QueryColumn { private var name:String = null; private var title:String = null; private var ftQueryField:String = null; // feature property private var operandValueFT:String = null; // FT name private var operandNamespace:String = null; private var operandLabelField:String = null; private var operandValueField:String = null; private var operatorNames:Array; private var searchType = null; private var valueFormat:String = null; private var toolTip:String = null; public function QueryColumn(name:String, title:String, ftQueryField:String, operandValueFT:String, operandNamespace:String, ftParentProperty:String, ftGeometryNode:String, operandLabelField:String, operandValueField:String, operatorNames:Array, searchType:String, valueFormat:String, toolTip:String){ this.name = name; this.title = title; this.ftQueryField = ftQueryField; this.operandValueFT = operandValueFT; this.operandNamespace = operandNamespace; this.operandLabelField = operandLabelField; this.operandValueField = operandValueField; this.operatorNames = operatorNames; this.searchType = searchType; this.valueFormat = valueFormat; this.toolTip = toolTip; } function getName():String{ return name; } function getTitle():String { return title; } function getFTQueryField():String{ return ftQueryField; } function getOperandLabelField():String{ return operandLabelField; } function getOperandValueField():String{ return operandValueField; } function getOperandNamespace():String { return operandNamespace; } function getOperandValueFT():String{ return operandValueFT; } function getOperatorNames():Array{ return operatorNames; } function getSearchType():String{ return searchType; } function getValueFormat():String{ var returnFormat:String = ""; if(valueFormat!=null){ returnFormat = valueFormat; } return returnFormat; } function getToolTip():String{ return toolTip; } }