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

io.github.isotes.vs.model.impl.SignFileDocumentImpl 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: SignFile
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.SignFileDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model.impl;
/**
 * A document containing one SignFile(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public class SignFileDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.SignFileDocument
{
    private static final long serialVersionUID = 1L;
    
    public SignFileDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SIGNFILE$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "SignFile");
    
    
    /**
     * Gets the "SignFile" element
     */
    public io.github.isotes.vs.model.SignFileDocument.SignFile getSignFile()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.SignFileDocument.SignFile target = null;
            target = (io.github.isotes.vs.model.SignFileDocument.SignFile)get_store().find_element_user(SIGNFILE$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "SignFile" element
     */
    public void setSignFile(io.github.isotes.vs.model.SignFileDocument.SignFile signFile)
    {
        generatedSetterHelperImpl(signFile, SIGNFILE$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "SignFile" element
     */
    public io.github.isotes.vs.model.SignFileDocument.SignFile addNewSignFile()
    {
        synchronized (monitor())
        {
            check_orphaned();
            io.github.isotes.vs.model.SignFileDocument.SignFile target = null;
            target = (io.github.isotes.vs.model.SignFileDocument.SignFile)get_store().add_element_user(SIGNFILE$0);
            return target;
        }
    }
    /**
     * An XML SignFile(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public static class SignFileImpl extends io.github.isotes.vs.model.impl.TaskTypeImpl implements io.github.isotes.vs.model.SignFileDocument.SignFile
    {
        private static final long serialVersionUID = 1L;
        
        public SignFileImpl(org.apache.xmlbeans.SchemaType sType)
        {
            super(sType);
        }
        
        private static final javax.xml.namespace.QName CERTIFICATETHUMBPRINT$0 = 
            new javax.xml.namespace.QName("", "CertificateThumbprint");
        private static final javax.xml.namespace.QName SIGNINGTARGET$2 = 
            new javax.xml.namespace.QName("", "SigningTarget");
        private static final javax.xml.namespace.QName TIMESTAMPURL$4 = 
            new javax.xml.namespace.QName("", "TimestampUrl");
        
        
        /**
         * Gets the "CertificateThumbprint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getCertificateThumbprint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(CERTIFICATETHUMBPRINT$0);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "CertificateThumbprint" attribute
         */
        public void setCertificateThumbprint(org.apache.xmlbeans.XmlAnySimpleType certificateThumbprint)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(CERTIFICATETHUMBPRINT$0);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(CERTIFICATETHUMBPRINT$0);
                }
                target.set(certificateThumbprint);
            }
        }
        
        /**
         * Appends and returns a new empty "CertificateThumbprint" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewCertificateThumbprint()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(CERTIFICATETHUMBPRINT$0);
                return target;
            }
        }
        
        /**
         * Gets the "SigningTarget" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getSigningTarget()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(SIGNINGTARGET$2);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * Sets the "SigningTarget" attribute
         */
        public void setSigningTarget(org.apache.xmlbeans.XmlAnySimpleType signingTarget)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(SIGNINGTARGET$2);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(SIGNINGTARGET$2);
                }
                target.set(signingTarget);
            }
        }
        
        /**
         * Appends and returns a new empty "SigningTarget" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewSigningTarget()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(SIGNINGTARGET$2);
                return target;
            }
        }
        
        /**
         * Gets the "TimestampUrl" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType getTimestampUrl()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TIMESTAMPURL$4);
                if (target == null)
                {
                    return null;
                }
                return target;
            }
        }
        
        /**
         * True if has "TimestampUrl" attribute
         */
        public boolean isSetTimestampUrl()
        {
            synchronized (monitor())
            {
                check_orphaned();
                return get_store().find_attribute_user(TIMESTAMPURL$4) != null;
            }
        }
        
        /**
         * Sets the "TimestampUrl" attribute
         */
        public void setTimestampUrl(org.apache.xmlbeans.XmlAnySimpleType timestampUrl)
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(TIMESTAMPURL$4);
                if (target == null)
                {
                    target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TIMESTAMPURL$4);
                }
                target.set(timestampUrl);
            }
        }
        
        /**
         * Appends and returns a new empty "TimestampUrl" attribute
         */
        public org.apache.xmlbeans.XmlAnySimpleType addNewTimestampUrl()
        {
            synchronized (monitor())
            {
                check_orphaned();
                org.apache.xmlbeans.XmlAnySimpleType target = null;
                target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(TIMESTAMPURL$4);
                return target;
            }
        }
        
        /**
         * Unsets the "TimestampUrl" attribute
         */
        public void unsetTimestampUrl()
        {
            synchronized (monitor())
            {
                check_orphaned();
                get_store().remove_attribute(TIMESTAMPURL$4);
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy