/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2012, Geomatys * * 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. */ package org.geotoolkit.gml.xml.v321; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RangeSetType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RangeSetType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice> * <element ref="{http://www.opengis.net/gml/3.2}ValueArray" maxOccurs="unbounded"/> * <element ref="{http://www.opengis.net/gml/3.2}AbstractScalarValueList" maxOccurs="unbounded"/> * <element ref="{http://www.opengis.net/gml/3.2}DataBlock"/> * <element ref="{http://www.opengis.net/gml/3.2}File"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RangeSetType", propOrder = { "valueArray", "abstractScalarValueList", "dataBlock", "file" }) public class RangeSetType { @XmlElement(name = "ValueArray") private List<ValueArrayType> valueArray; @XmlElementRef(name = "AbstractScalarValueList", namespace = "http://www.opengis.net/gml/3.2", type = JAXBElement.class) private List<JAXBElement<?>> abstractScalarValueList; @XmlElement(name = "DataBlock") private DataBlockType dataBlock; @XmlElement(name = "File") private FileType file; /** * Gets the value of the valueArray property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the valueArray property. * * <p> * For example, to add a new item, do as follows: * <pre> * getValueArray().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ValueArrayType } * * */ public List<ValueArrayType> getValueArray() { if (valueArray == null) { valueArray = new ArrayList<ValueArrayType>(); } return this.valueArray; } /** * Gets the value of the abstractScalarValueList property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the abstractScalarValueList property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAbstractScalarValueList().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link Object }{@code >} * {@link JAXBElement }{@code <}{@link CodeOrNilReasonListType }{@code >} * {@link JAXBElement }{@code <}{@link List }{@code <}{@link String }{@code >}{@code >} * {@link JAXBElement }{@code <}{@link MeasureOrNilReasonListType }{@code >} * {@link JAXBElement }{@code <}{@link List }{@code <}{@link String }{@code >}{@code >} * * */ public List<JAXBElement<?>> getAbstractScalarValueList() { if (abstractScalarValueList == null) { abstractScalarValueList = new ArrayList<JAXBElement<?>>(); } return this.abstractScalarValueList; } /** * Gets the value of the dataBlock property. * * @return * possible object is * {@link DataBlockType } * */ public DataBlockType getDataBlock() { return dataBlock; } /** * Sets the value of the dataBlock property. * * @param value * allowed object is * {@link DataBlockType } * */ public void setDataBlock(DataBlockType value) { this.dataBlock = value; } /** * Gets the value of the file property. * * @return * possible object is * {@link FileType } * */ public FileType getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link FileType } * */ public void setFile(FileType value) { this.file = value; } }