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

io.github.isotes.vs.model.impl.AppxHashUriDocumentImpl Maven / Gradle / Ivy

Go to download

Generated XMLBeans Java classes for the XML schema of MSBuild project files

The newest version!
/*
 * An XML document type.
 * Localname: AppxHashUri
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.AppxHashUriDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one AppxHashUri(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class AppxHashUriDocumentImpl extends io.github.isotes.vs.model.impl.ItemDocumentImpl implements io.github.isotes.vs.model.AppxHashUriDocument
{
    private static final long serialVersionUID = 1L;
    
    public AppxHashUriDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName APPXHASHURI$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "AppxHashUri");
    
    
    /**
     * Gets the "AppxHashUri" element
     */
    public io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri getAppxHashUri()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri target = null;
            target = (io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri)get_store().find_element_user(APPXHASHURI$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "AppxHashUri" element
     */
    public void setAppxHashUri(io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri appxHashUri)
    {
        generatedSetterHelperImpl(appxHashUri, APPXHASHURI$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "AppxHashUri" element
     */
    public io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri addNewAppxHashUri()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri target = null;
            target = (io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri)get_store().add_element_user(APPXHASHURI$0);
            return target;
        }
    }
    /**
     * An XML AppxHashUri(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class AppxHashUriImpl extends io.github.isotes.vs.model.impl.SimpleItemTypeImpl implements io.github.isotes.vs.model.AppxHashUriDocument.AppxHashUri
    {
        private static final long serialVersionUID = 1L;
        
        public AppxHashUriImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName ID$0 = 
            new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "Id");
        
        
        /**
         * Gets the "Id" element
         */
        public org.apache.xmlbeans.XmlObject getId()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlObject target = null;
                target = (org.apache.xmlbeans.XmlObject)get_store().find_element_user(ID$0, 0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "Id" element
         */
        public void setId(org.apache.xmlbeans.XmlObject id)
        {
            generatedSetterHelperImpl(id, ID$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
        }
        
        /**
         * Appends and returns a new empty "Id" element
         */
        public org.apache.xmlbeans.XmlObject addNewId()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlObject target = null;
                target = (org.apache.xmlbeans.XmlObject)get_store().add_element_user(ID$0);
                return target;
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy