/* * 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. */ package org.geotoolkit.owc.gtkext; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlElementDecl; import javax.xml.bind.annotation.XmlRegistry; import javax.xml.namespace.QName; @XmlRegistry public class ObjectFactory { public final static QName _Parameter_QNAME = new QName("http://www.geotoolkit.org/owc", "parameter"); public final static QName _Visible_QNAME = new QName("http://www.geotoolkit.org/owc", "visible"); public final static QName _Selectable_QNAME = new QName("http://www.geotoolkit.org/owc", "selectable"); public final static QName _Opacity_QNAME = new QName("http://www.geotoolkit.org/owc", "opacity"); public ParameterType createParameterType() { return new ParameterType(); } @XmlElementDecl(namespace = "http://www.geotoolkit.org/owc", name = "parameter") public JAXBElement<ParameterType> createOffering(ParameterType value) { return new JAXBElement<ParameterType>(_Parameter_QNAME, ParameterType.class, null, value); } @XmlElementDecl(namespace = "http://www.geotoolkit.org/owc", name = "visible") public JAXBElement<Boolean> createVisible(Boolean value) { return new JAXBElement<Boolean>(_Visible_QNAME, Boolean.class, null, value); } @XmlElementDecl(namespace = "http://www.geotoolkit.org/owc", name = "selectable") public JAXBElement<Boolean> createSelectable(Boolean value) { return new JAXBElement<Boolean>(_Selectable_QNAME, Boolean.class, null, value); } @XmlElementDecl(namespace = "http://www.geotoolkit.org/owc", name = "opacity") public JAXBElement<Double> createOpacity(Double value) { return new JAXBElement<Double>(_Opacity_QNAME, Double.class, null, value); } }