/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2014, 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. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.04.20 at 07:08:32 PM CEST // package org.geotoolkit.owc.xml.v10; 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.XmlAnyElement; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlType; import org.w3._2005.atom.LinkType; import org.w3c.dom.Element; /** * Defines a portrayal style for a resource content. * * <p>Java class for StyleSetType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StyleSetType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <choice maxOccurs="unbounded"> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="title" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="abstract" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="legendURL" type="{http://www.w3.org/2005/Atom}linkType" minOccurs="0"/> * <element name="content" type="{http://www.opengis.net/owc/1.0}ContentType" minOccurs="0"/> * <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/> * </choice> * <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StyleSetType", propOrder = { "nameOrTitleOrAbstract" }) public class StyleSetType { @XmlElementRefs({ @XmlElementRef(name = "abstract", namespace = "http://www.opengis.net/owc/1.0", type = JAXBElement.class, required = false), @XmlElementRef(name = "content", namespace = "http://www.opengis.net/owc/1.0", type = JAXBElement.class, required = false), @XmlElementRef(name = "legendURL", namespace = "http://www.opengis.net/owc/1.0", type = JAXBElement.class, required = false), @XmlElementRef(name = "title", namespace = "http://www.opengis.net/owc/1.0", type = JAXBElement.class, required = false), @XmlElementRef(name = "name", namespace = "http://www.opengis.net/owc/1.0", type = JAXBElement.class, required = false) }) @XmlAnyElement(lax = true) protected List<Object> nameOrTitleOrAbstract; @XmlAttribute(name = "default") protected Boolean _default; /** * Gets the value of the nameOrTitleOrAbstract 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 nameOrTitleOrAbstract property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNameOrTitleOrAbstract().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Object } * {@link JAXBElement }{@code <}{@link ContentType }{@code >} * {@link JAXBElement }{@code <}{@link LinkType }{@code >} * {@link JAXBElement }{@code <}{@link String }{@code >} * {@link Element } * {@link JAXBElement }{@code <}{@link String }{@code >} * * */ public List<Object> getNameOrTitleOrAbstract() { if (nameOrTitleOrAbstract == null) { nameOrTitleOrAbstract = new ArrayList<Object>(); } return this.nameOrTitleOrAbstract; } /** * Gets the value of the default property. * * @return * possible object is * {@link Boolean } * */ public boolean isDefault() { if (_default == null) { return false; } else { return _default; } } /** * Sets the value of the default property. * * @param value * allowed object is * {@link Boolean } * */ public void setDefault(Boolean value) { this._default = value; } }