All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.opengis.ows.x11.impl.NoValuesDocumentImpl Maven / Gradle / Ivy

The newest version!
/*
 * An XML document type.
 * Localname: NoValues
 * Namespace: http://www.opengis.net/ows/1.1
 * Java type: net.opengis.ows.x11.NoValuesDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.ows.x11.impl;

import javax.xml.namespace.QName;
import org.apache.xmlbeans.QNameSet;
import org.apache.xmlbeans.XmlObject;

/**
 * A document containing one NoValues(@http://www.opengis.net/ows/1.1) element.
 *
 * This is a complex type.
 */
public class NoValuesDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ows.x11.NoValuesDocument {
    private static final long serialVersionUID = 1L;

    public NoValuesDocumentImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }

    private static final QName[] PROPERTY_QNAME = {
        new QName("http://www.opengis.net/ows/1.1", "NoValues"),
    };


    /**
     * Gets the "NoValues" element
     */
    @Override
    public net.opengis.ows.x11.NoValuesDocument.NoValues getNoValues() {
        synchronized (monitor()) {
            check_orphaned();
            net.opengis.ows.x11.NoValuesDocument.NoValues target = null;
            target = (net.opengis.ows.x11.NoValuesDocument.NoValues)get_store().find_element_user(PROPERTY_QNAME[0], 0);
            return (target == null) ? null : target;
        }
    }

    /**
     * Sets the "NoValues" element
     */
    @Override
    public void setNoValues(net.opengis.ows.x11.NoValuesDocument.NoValues noValues) {
        generatedSetterHelperImpl(noValues, PROPERTY_QNAME[0], 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }

    /**
     * Appends and returns a new empty "NoValues" element
     */
    @Override
    public net.opengis.ows.x11.NoValuesDocument.NoValues addNewNoValues() {
        synchronized (monitor()) {
            check_orphaned();
            net.opengis.ows.x11.NoValuesDocument.NoValues target = null;
            target = (net.opengis.ows.x11.NoValuesDocument.NoValues)get_store().add_element_user(PROPERTY_QNAME[0]);
            return target;
        }
    }
    /**
     * An XML NoValues(@http://www.opengis.net/ows/1.1).
     *
     * This is a complex type.
     */
    public static class NoValuesImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ows.x11.NoValuesDocument.NoValues {
        private static final long serialVersionUID = 1L;

        public NoValuesImpl(org.apache.xmlbeans.SchemaType sType) {
            super(sType);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy