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

net.opengis.ogc.impl.LogicalOperatorsDocumentImpl Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: LogicalOperators
 * Namespace: http://www.opengis.net/ogc
 * Java type: net.opengis.ogc.LogicalOperatorsDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.ogc.impl;
/**
 * A document containing one LogicalOperators(@http://www.opengis.net/ogc) element.
 *
 * This is a complex type.
 */
public class LogicalOperatorsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ogc.LogicalOperatorsDocument
{
    private static final long serialVersionUID = 1L;
    
    public LogicalOperatorsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName LOGICALOPERATORS$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/ogc", "LogicalOperators");
    
    
    /**
     * Gets the "LogicalOperators" element
     */
    public net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators getLogicalOperators()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators target = null;
            target = (net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators)get_store().find_element_user(LOGICALOPERATORS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "LogicalOperators" element
     */
    public void setLogicalOperators(net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators logicalOperators)
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators target = null;
            target = (net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators)get_store().find_element_user(LOGICALOPERATORS$0, 0);
            if (target == null)
            {
                target = (net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators)get_store().add_element_user(LOGICALOPERATORS$0);
            }
            target.set(logicalOperators);
        }
    }
    
    /**
     * Appends and returns a new empty "LogicalOperators" element
     */
    public net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators addNewLogicalOperators()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators target = null;
            target = (net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators)get_store().add_element_user(LOGICALOPERATORS$0);
            return target;
        }
    }
    /**
     * An XML LogicalOperators(@http://www.opengis.net/ogc).
     *
     * This is a complex type.
     */
    public static class LogicalOperatorsImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.ogc.LogicalOperatorsDocument.LogicalOperators
    {
        private static final long serialVersionUID = 1L;
        
        public LogicalOperatorsImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy