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

net.opengis.sps.x10.impl.FeasibilityIDDocumentImpl Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: feasibilityID
 * Namespace: http://www.opengis.net/sps/1.0
 * Java type: net.opengis.sps.x10.FeasibilityIDDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.sps.x10.impl;
/**
 * A document containing one feasibilityID(@http://www.opengis.net/sps/1.0) element.
 *
 * This is a complex type.
 */
public class FeasibilityIDDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.sps.x10.FeasibilityIDDocument
{
    private static final long serialVersionUID = 1L;
    
    public FeasibilityIDDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName FEASIBILITYID$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/sps/1.0", "feasibilityID");
    
    
    /**
     * Gets the "feasibilityID" element
     */
    public java.lang.String getFeasibilityID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FEASIBILITYID$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "feasibilityID" element
     */
    public org.apache.xmlbeans.XmlString xgetFeasibilityID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(FEASIBILITYID$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "feasibilityID" element
     */
    public void setFeasibilityID(java.lang.String feasibilityID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(FEASIBILITYID$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(FEASIBILITYID$0);
            }
            target.setStringValue(feasibilityID);
        }
    }
    
    /**
     * Sets (as xml) the "feasibilityID" element
     */
    public void xsetFeasibilityID(org.apache.xmlbeans.XmlString feasibilityID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(FEASIBILITYID$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(FEASIBILITYID$0);
            }
            target.set(feasibilityID);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy