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

net.opengis.swe.x10.impl.MultiplexedStreamFormatDocumentImpl Maven / Gradle / Ivy

/*
 * An XML document type.
 * Localname: MultiplexedStreamFormat
 * Namespace: http://www.opengis.net/swe/1.0
 * Java type: net.opengis.swe.x10.MultiplexedStreamFormatDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.swe.x10.impl;
/**
 * A document containing one MultiplexedStreamFormat(@http://www.opengis.net/swe/1.0) element.
 *
 * This is a complex type.
 */
public class MultiplexedStreamFormatDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.swe.x10.MultiplexedStreamFormatDocument
{
    private static final long serialVersionUID = 1L;
    
    public MultiplexedStreamFormatDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName MULTIPLEXEDSTREAMFORMAT$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/swe/1.0", "MultiplexedStreamFormat");
    
    
    /**
     * Gets the "MultiplexedStreamFormat" element
     */
    public net.opengis.swe.x10.MultiplexedStreamFormatType getMultiplexedStreamFormat()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.swe.x10.MultiplexedStreamFormatType target = null;
            target = (net.opengis.swe.x10.MultiplexedStreamFormatType)get_store().find_element_user(MULTIPLEXEDSTREAMFORMAT$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "MultiplexedStreamFormat" element
     */
    public void setMultiplexedStreamFormat(net.opengis.swe.x10.MultiplexedStreamFormatType multiplexedStreamFormat)
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.swe.x10.MultiplexedStreamFormatType target = null;
            target = (net.opengis.swe.x10.MultiplexedStreamFormatType)get_store().find_element_user(MULTIPLEXEDSTREAMFORMAT$0, 0);
            if (target == null)
            {
                target = (net.opengis.swe.x10.MultiplexedStreamFormatType)get_store().add_element_user(MULTIPLEXEDSTREAMFORMAT$0);
            }
            target.set(multiplexedStreamFormat);
        }
    }
    
    /**
     * Appends and returns a new empty "MultiplexedStreamFormat" element
     */
    public net.opengis.swe.x10.MultiplexedStreamFormatType addNewMultiplexedStreamFormat()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.swe.x10.MultiplexedStreamFormatType target = null;
            target = (net.opengis.swe.x10.MultiplexedStreamFormatType)get_store().add_element_user(MULTIPLEXEDSTREAMFORMAT$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy