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

net.opengis.sos.x10.impl.GetFeatureOfInterestTimeDocumentImpl Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: GetFeatureOfInterestTime
 * Namespace: http://www.opengis.net/sos/1.0
 * Java type: net.opengis.sos.x10.GetFeatureOfInterestTimeDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.sos.x10.impl;
/**
 * A document containing one GetFeatureOfInterestTime(@http://www.opengis.net/sos/1.0) element.
 *
 * This is a complex type.
 */
public class GetFeatureOfInterestTimeDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.sos.x10.GetFeatureOfInterestTimeDocument
{
    private static final long serialVersionUID = 1L;
    
    public GetFeatureOfInterestTimeDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName GETFEATUREOFINTERESTTIME$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/sos/1.0", "GetFeatureOfInterestTime");
    
    
    /**
     * Gets the "GetFeatureOfInterestTime" element
     */
    public net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime getGetFeatureOfInterestTime()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime target = null;
            target = (net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime)get_store().find_element_user(GETFEATUREOFINTERESTTIME$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "GetFeatureOfInterestTime" element
     */
    public void setGetFeatureOfInterestTime(net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime getFeatureOfInterestTime)
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime target = null;
            target = (net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime)get_store().find_element_user(GETFEATUREOFINTERESTTIME$0, 0);
            if (target == null)
            {
                target = (net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime)get_store().add_element_user(GETFEATUREOFINTERESTTIME$0);
            }
            target.set(getFeatureOfInterestTime);
        }
    }
    
    /**
     * Appends and returns a new empty "GetFeatureOfInterestTime" element
     */
    public net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime addNewGetFeatureOfInterestTime()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime target = null;
            target = (net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime)get_store().add_element_user(GETFEATUREOFINTERESTTIME$0);
            return target;
        }
    }
    /**
     * An XML GetFeatureOfInterestTime(@http://www.opengis.net/sos/1.0).
     *
     * This is a complex type.
     */
    public static class GetFeatureOfInterestTimeImpl extends net.opengis.sos.x10.impl.RequestBaseTypeImpl implements net.opengis.sos.x10.GetFeatureOfInterestTimeDocument.GetFeatureOfInterestTime
    {
        private static final long serialVersionUID = 1L;
        
        public GetFeatureOfInterestTimeImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName FEATUREOFINTERESTID$0 = 
            new javax.xml.namespace.QName("http://www.opengis.net/sos/1.0", "FeatureOfInterestId");
        
        
        /**
         * Gets the "FeatureOfInterestId" element
         */
        public java.lang.String getFeatureOfInterestId()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FEATUREOFINTERESTID$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target.getStringValue();
            }
        }
        
        /**
         * Gets (as xml) the "FeatureOfInterestId" element
         */
        public org.apache.xmlbeans.XmlAnyURI xgetFeatureOfInterestId()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnyURI target = null;
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(FEATUREOFINTERESTID$0, 0);
                return target;
            }
        }
        
        /**
         * Sets the "FeatureOfInterestId" element
         */
        public void setFeatureOfInterestId(java.lang.String featureOfInterestId)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.SimpleValue target = null;
                target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FEATUREOFINTERESTID$0, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FEATUREOFINTERESTID$0);
                }
                target.setStringValue(featureOfInterestId);
            }
        }
        
        /**
         * Sets (as xml) the "FeatureOfInterestId" element
         */
        public void xsetFeatureOfInterestId(org.apache.xmlbeans.XmlAnyURI featureOfInterestId)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnyURI target = null;
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(FEATUREOFINTERESTID$0, 0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(FEATUREOFINTERESTID$0);
                }
                target.set(featureOfInterestId);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy