001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/branches/2.2_testing/src/org/deegree/ogcwebservices/wcs/describecoverage/RangeSet.java $ 002 /*---------------- FILE HEADER ------------------------------------------ 003 004 This file is part of deegree. 005 Copyright (C) 2001-2008 by: 006 EXSE, Department of Geography, University of Bonn 007 http://www.giub.uni-bonn.de/deegree/ 008 lat/lon GmbH 009 http://www.lat-lon.de 010 011 This library is free software; you can redistribute it and/or 012 modify it under the terms of the GNU Lesser General Public 013 License as published by the Free Software Foundation; either 014 version 2.1 of the License, or (at your option) any later version. 015 016 This library is distributed in the hope that it will be useful, 017 but WITHOUT ANY WARRANTY; without even the implied warranty of 018 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 019 Lesser General Public License for more details. 020 021 You should have received a copy of the GNU Lesser General Public 022 License along with this library; if not, write to the Free Software 023 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 024 025 Contact: 026 027 Andreas Poth 028 lat/lon GmbH 029 Aennchenstr. 19 030 53115 Bonn 031 Germany 032 E-Mail: poth@lat-lon.de 033 034 Prof. Dr. Klaus Greve 035 Department of Geography 036 University of Bonn 037 Meckenheimer Allee 166 038 53115 Bonn 039 Germany 040 E-Mail: greve@giub.uni-bonn.de 041 042 043 ---------------------------------------------------------------------------*/ 044 package org.deegree.ogcwebservices.wcs.describecoverage; 045 046 import java.net.URI; 047 048 import org.deegree.datatypes.values.ValueEnum; 049 import org.deegree.ogcbase.Description; 050 import org.deegree.ogcbase.OGCException; 051 import org.deegree.ogcwebservices.MetadataLink; 052 053 /** 054 * @version $Revision: 9345 $ 055 * @author <a href="mailto:poth@lat-lon.de">Andreas Poth</a> 056 * @author last edited by: $Author: apoth $ 057 * 058 * @version 1.0. $Revision: 9345 $, $Date: 2007-12-27 17:22:25 +0100 (Do, 27 Dez 2007) $ 059 * 060 * @since 2.0 061 */ 062 063 public class RangeSet extends Description implements Cloneable { 064 065 private URI semantic = null; 066 067 private URI refSys = null; 068 069 private String refSysLabel = null; 070 071 private ValueEnum nullValues = null; 072 073 private AxisDescription[] axisDescription = new AxisDescription[0]; 074 075 /** 076 * @param name 077 * @param label 078 * @throws OGCException 079 */ 080 public RangeSet( String name, String label ) throws OGCException { 081 super( name, label ); 082 } 083 084 /** 085 * @param name 086 * @param label 087 * @param nullValues 088 * @param axisDescription 089 * @throws OGCException 090 */ 091 public RangeSet( String name, String label, ValueEnum nullValues, AxisDescription[] axisDescription ) 092 throws OGCException { 093 super( name, label ); 094 this.nullValues = nullValues; 095 setAxisDescription( axisDescription ); 096 } 097 098 /** 099 * @param name 100 * @param label 101 * @param description 102 * @param metadataLink 103 * @param semantic 104 * @param refSys 105 * @param refSysLabel 106 * @param nullValues 107 * @param axisDescription 108 * @throws OGCException 109 */ 110 public RangeSet( String name, String label, String description, MetadataLink metadataLink, URI semantic, 111 URI refSys, String refSysLabel, ValueEnum nullValues, AxisDescription[] axisDescription ) 112 throws OGCException { 113 super( name, label, description, metadataLink ); 114 this.semantic = semantic; 115 this.refSys = refSys; 116 this.refSysLabel = refSysLabel; 117 this.nullValues = nullValues; 118 if ( axisDescription != null ) { 119 this.axisDescription = axisDescription; 120 } 121 } 122 123 /** 124 * @return Returns the axisDescription. 125 */ 126 public AxisDescription[] getAxisDescription() { 127 return axisDescription; 128 } 129 130 /** 131 * @param axisDescription 132 * The axisDescription to set. 133 */ 134 public void setAxisDescription( AxisDescription[] axisDescription ) { 135 if ( axisDescription != null ) { 136 this.axisDescription = axisDescription; 137 } 138 } 139 140 /** 141 * @return Returns the nullValues. 142 */ 143 public ValueEnum getNullValues() { 144 return nullValues; 145 } 146 147 /** 148 * @param nullValues 149 * The nullValues to set. 150 */ 151 public void setNullValues( ValueEnum nullValues ) { 152 this.nullValues = nullValues; 153 } 154 155 /** 156 * @return Returns the refSys. 157 */ 158 public URI getRefSys() { 159 return refSys; 160 } 161 162 /** 163 * @param refSys 164 * The refSys to set. 165 */ 166 public void setRefSys( URI refSys ) { 167 this.refSys = refSys; 168 } 169 170 /** 171 * @return Returns the refSysLabel. 172 */ 173 public String getRefSysLabel() { 174 return refSysLabel; 175 } 176 177 /** 178 * @param refSysLabel 179 * The refSysLabel to set. 180 */ 181 public void setRefSysLabel( String refSysLabel ) { 182 this.refSysLabel = refSysLabel; 183 } 184 185 /** 186 * @return Returns the semantic. 187 */ 188 public URI getSemantic() { 189 return semantic; 190 } 191 192 /** 193 * @param semantic 194 * The semantic to set. 195 */ 196 public void setSemantic( URI semantic ) { 197 this.semantic = semantic; 198 } 199 200 /** 201 * @see java.lang.Object#clone() 202 */ 203 public Object clone() { 204 ValueEnum nullValues_ = null; 205 if ( nullValues_ != null ) { 206 nullValues_ = (ValueEnum) nullValues.clone(); 207 } 208 209 AxisDescription[] ad = new AxisDescription[axisDescription.length]; 210 for ( int i = 0; i < ad.length; i++ ) { 211 ad[i] = (AxisDescription) axisDescription[i].clone(); 212 } 213 Description des = (Description) super.clone(); 214 try { 215 return new RangeSet( des.getName(), des.getLabel(), des.getDescription(), des.getMetadataLink(), semantic, 216 refSys, refSysLabel, nullValues_, ad ); 217 } catch ( Exception e ) { 218 } 219 return null; 220 } 221 222 }