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

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

Go to download

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

The newest version!
/*
 * XML Type:  MakeAppxWithOutputType
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.MakeAppxWithOutputType
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * An XML MakeAppxWithOutputType(@http://schemas.microsoft.com/developer/msbuild/2003).
 *
 * This is a complex type.
 */
public class MakeAppxWithOutputTypeImpl extends io.github.isotes.vs.model.impl.MakeAppxTypeImpl implements io.github.isotes.vs.model.MakeAppxWithOutputType
{
    private static final long serialVersionUID = 1L;
    
    public MakeAppxWithOutputTypeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName OUTPUT2$0 = 
        new javax.xml.namespace.QName("", "Output");
    
    
    /**
     * Gets the "Output" attribute
     */
    public org.apache.xmlbeans.XmlAnySimpleType getOutput2()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnySimpleType target = null;
            target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUT2$0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "Output" attribute
     */
    public void setOutput2(org.apache.xmlbeans.XmlAnySimpleType output2)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnySimpleType target = null;
            target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(OUTPUT2$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUT2$0);
            }
            target.set(output2);
        }
    }
    
    /**
     * Appends and returns a new empty "Output" attribute
     */
    public org.apache.xmlbeans.XmlAnySimpleType addNewOutput2()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnySimpleType target = null;
            target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(OUTPUT2$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy