/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, 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.se.xml.vext; 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; import org.geotoolkit.se.xml.v110.ParameterValueType; import org.geotoolkit.se.xml.v110.SymbolizerType; /** * <p>Java class for RuleType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RuleType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.opengis.net/se}Name" minOccurs="0"/> * <element ref="{http://www.opengis.net/se}Description" minOccurs="0"/> * <element ref="{http://www.opengis.net/se}LegendGraphic" minOccurs="0"/> * <choice minOccurs="0"> * <element ref="{http://www.opengis.net/ogc}Filter"/> * <element ref="{http://www.opengis.net/se}ElseFilter"/> * </choice> * <element ref="{http://www.opengis.net/se}MinScaleDenominator" minOccurs="0"/> * <element ref="{http://www.opengis.net/se}MaxScaleDenominator" minOccurs="0"/> * <element ref="{http://www.opengis.net/se}Symbolizer" maxOccurs="unbounded"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RangeType", propOrder = { "threshold", "symbolizer" }) public class RangeType { @XmlElement(name = "Threshold") protected ParameterValueType threshold; @XmlElementRef(name = "Symbolizer", namespace = "http://www.opengis.net/se", type = JAXBElement.class) protected List<JAXBElement<? extends SymbolizerType>> symbolizer; public ParameterValueType getThreshold() { return threshold; } public void setThreshold(final ParameterValueType value) { this.threshold = value; } /** * Gets the value of the symbolizer 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 symbolizer property. * * <p> * For example, to add a new item, do as follows: * <pre> * getSymbolizer().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link LineSymbolizerType }{@code >} * {@link JAXBElement }{@code <}{@link SymbolizerType }{@code >} * {@link JAXBElement }{@code <}{@link PolygonSymbolizerType }{@code >} * {@link JAXBElement }{@code <}{@link PointSymbolizerType }{@code >} * {@link JAXBElement }{@code <}{@link TextSymbolizerType }{@code >} * {@link JAXBElement }{@code <}{@link RasterSymbolizerType }{@code >} * * */ public List<JAXBElement<? extends SymbolizerType>> getSymbolizer() { if (symbolizer == null) { symbolizer = new ArrayList<JAXBElement<? extends SymbolizerType>>(); } return this.symbolizer; } }