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

net.opengis.sps.x20.impl.GetFeasibilityDocumentImpl Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
/*
 * An XML document type.
 * Localname: GetFeasibility
 * Namespace: http://www.opengis.net/sps/2.0
 * Java type: net.opengis.sps.x20.GetFeasibilityDocument
 *
 * Automatically generated - do not modify.
 */
package net.opengis.sps.x20.impl;
/**
 * A document containing one GetFeasibility(@http://www.opengis.net/sps/2.0) element.
 *
 * This is a complex type.
 */
public class GetFeasibilityDocumentImpl extends net.opengis.sps.x20.impl.TaskingRequestDocumentImpl implements net.opengis.sps.x20.GetFeasibilityDocument
{
    private static final long serialVersionUID = 1L;
    
    public GetFeasibilityDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName GETFEASIBILITY$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/sps/2.0", "GetFeasibility");
    
    
    /**
     * Gets the "GetFeasibility" element
     */
    public net.opengis.sps.x20.GetFeasibilityType getGetFeasibility()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sps.x20.GetFeasibilityType target = null;
            target = (net.opengis.sps.x20.GetFeasibilityType)get_store().find_element_user(GETFEASIBILITY$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "GetFeasibility" element
     */
    public void setGetFeasibility(net.opengis.sps.x20.GetFeasibilityType getFeasibility)
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sps.x20.GetFeasibilityType target = null;
            target = (net.opengis.sps.x20.GetFeasibilityType)get_store().find_element_user(GETFEASIBILITY$0, 0);
            if (target == null)
            {
                target = (net.opengis.sps.x20.GetFeasibilityType)get_store().add_element_user(GETFEASIBILITY$0);
            }
            target.set(getFeasibility);
        }
    }
    
    /**
     * Appends and returns a new empty "GetFeasibility" element
     */
    public net.opengis.sps.x20.GetFeasibilityType addNewGetFeasibility()
    {
        synchronized (monitor())
        {
            check_orphaned();
            net.opengis.sps.x20.GetFeasibilityType target = null;
            target = (net.opengis.sps.x20.GetFeasibilityType)get_store().add_element_user(GETFEASIBILITY$0);
            return target;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy