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

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

/*
 * XML Type:  CompoundPhenomenonType
 * Namespace: http://www.opengis.net/swe/1.0
 * Java type: net.opengis.swe.x10.CompoundPhenomenonType
 *
 * Automatically generated - do not modify.
 */
package net.opengis.swe.x10.impl;
/**
 * An XML CompoundPhenomenonType(@http://www.opengis.net/swe/1.0).
 *
 * This is a complex type.
 */
public class CompoundPhenomenonTypeImpl extends net.opengis.swe.x10.impl.PhenomenonTypeImpl implements net.opengis.swe.x10.CompoundPhenomenonType
{
    private static final long serialVersionUID = 1L;
    
    public CompoundPhenomenonTypeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName DIMENSION$0 = 
        new javax.xml.namespace.QName("", "dimension");
    
    
    /**
     * Gets the "dimension" attribute
     */
    public java.math.BigInteger getDimension()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DIMENSION$0);
            if (target == null)
            {
                return null;
            }
            return target.getBigIntegerValue();
        }
    }
    
    /**
     * Gets (as xml) the "dimension" attribute
     */
    public org.apache.xmlbeans.XmlPositiveInteger xgetDimension()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlPositiveInteger target = null;
            target = (org.apache.xmlbeans.XmlPositiveInteger)get_store().find_attribute_user(DIMENSION$0);
            return target;
        }
    }
    
    /**
     * Sets the "dimension" attribute
     */
    public void setDimension(java.math.BigInteger dimension)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(DIMENSION$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(DIMENSION$0);
            }
            target.setBigIntegerValue(dimension);
        }
    }
    
    /**
     * Sets (as xml) the "dimension" attribute
     */
    public void xsetDimension(org.apache.xmlbeans.XmlPositiveInteger dimension)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlPositiveInteger target = null;
            target = (org.apache.xmlbeans.XmlPositiveInteger)get_store().find_attribute_user(DIMENSION$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlPositiveInteger)get_store().add_attribute_user(DIMENSION$0);
            }
            target.set(dimension);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy