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

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

The newest version!
/*
 * An XML document type.
 * Localname: Abstract
 * Namespace: http://www.opengis.net/ows/1.1
 * Java type: net.opengis.ows.x11.AbstractDocument
 *
 * 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 Abstract(@http://www.opengis.net/ows/1.1) element.
 *
 * This is a complex type.
 */
public class AbstractDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ows.x11.AbstractDocument {
    private static final long serialVersionUID = 1L;

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

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


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

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

    /**
     * Appends and returns a new empty "Abstract" element
     */
    @Override
    public net.opengis.ows.x11.LanguageStringType addNewAbstract() {
        synchronized (monitor()) {
            check_orphaned();
            net.opengis.ows.x11.LanguageStringType target = null;
            target = (net.opengis.ows.x11.LanguageStringType)get_store().add_element_user(PROPERTY_QNAME[0]);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy