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

io.github.isotes.vs.model.MSBuildDocument 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: MSBuild
 * Namespace: http://schemas.microsoft.com/developer/msbuild/2003
 * Java type: io.github.isotes.vs.model.MSBuildDocument
 *
 * Automatically generated - do not modify.
 */
package io.github.isotes.vs.model;


/**
 * A document containing one MSBuild(@http://schemas.microsoft.com/developer/msbuild/2003) element.
 *
 * This is a complex type.
 */
public interface MSBuildDocument extends io.github.isotes.vs.model.TaskDocument
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(MSBuildDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.io.github.isotes.vs.model.typesystemholder").resolveHandle("msbuildd1f8doctype");
    
    /**
     * Gets the "MSBuild" element
     */
    io.github.isotes.vs.model.MSBuildDocument.MSBuild getMSBuild();
    
    /**
     * Sets the "MSBuild" element
     */
    void setMSBuild(io.github.isotes.vs.model.MSBuildDocument.MSBuild msBuild);
    
    /**
     * Appends and returns a new empty "MSBuild" element
     */
    io.github.isotes.vs.model.MSBuildDocument.MSBuild addNewMSBuild();
    
    /**
     * An XML MSBuild(@http://schemas.microsoft.com/developer/msbuild/2003).
     *
     * This is a complex type.
     */
    public interface MSBuild extends io.github.isotes.vs.model.TaskType
    {
        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(MSBuild.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.io.github.isotes.vs.model.typesystemholder").resolveHandle("msbuildd7ccelemtype");
        
        /**
         * Gets the "BuildInParallel" attribute
         */
        java.lang.String getBuildInParallel();
        
        /**
         * Gets (as xml) the "BuildInParallel" attribute
         */
        io.github.isotes.vs.model.Boolean xgetBuildInParallel();
        
        /**
         * True if has "BuildInParallel" attribute
         */
        boolean isSetBuildInParallel();
        
        /**
         * Sets the "BuildInParallel" attribute
         */
        void setBuildInParallel(java.lang.String buildInParallel);
        
        /**
         * Sets (as xml) the "BuildInParallel" attribute
         */
        void xsetBuildInParallel(io.github.isotes.vs.model.Boolean buildInParallel);
        
        /**
         * Unsets the "BuildInParallel" attribute
         */
        void unsetBuildInParallel();
        
        /**
         * Gets the "Projects" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType getProjects();
        
        /**
         * Sets the "Projects" attribute
         */
        void setProjects(org.apache.xmlbeans.XmlAnySimpleType projects);
        
        /**
         * Appends and returns a new empty "Projects" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType addNewProjects();
        
        /**
         * Gets the "Properties" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType getProperties();
        
        /**
         * True if has "Properties" attribute
         */
        boolean isSetProperties();
        
        /**
         * Sets the "Properties" attribute
         */
        void setProperties(org.apache.xmlbeans.XmlAnySimpleType properties);
        
        /**
         * Appends and returns a new empty "Properties" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType addNewProperties();
        
        /**
         * Unsets the "Properties" attribute
         */
        void unsetProperties();
        
        /**
         * Gets the "RebaseOutputs" attribute
         */
        java.lang.String getRebaseOutputs();
        
        /**
         * Gets (as xml) the "RebaseOutputs" attribute
         */
        io.github.isotes.vs.model.Boolean xgetRebaseOutputs();
        
        /**
         * True if has "RebaseOutputs" attribute
         */
        boolean isSetRebaseOutputs();
        
        /**
         * Sets the "RebaseOutputs" attribute
         */
        void setRebaseOutputs(java.lang.String rebaseOutputs);
        
        /**
         * Sets (as xml) the "RebaseOutputs" attribute
         */
        void xsetRebaseOutputs(io.github.isotes.vs.model.Boolean rebaseOutputs);
        
        /**
         * Unsets the "RebaseOutputs" attribute
         */
        void unsetRebaseOutputs();
        
        /**
         * Gets the "RunEachTargetSeparately" attribute
         */
        java.lang.String getRunEachTargetSeparately();
        
        /**
         * Gets (as xml) the "RunEachTargetSeparately" attribute
         */
        io.github.isotes.vs.model.Boolean xgetRunEachTargetSeparately();
        
        /**
         * True if has "RunEachTargetSeparately" attribute
         */
        boolean isSetRunEachTargetSeparately();
        
        /**
         * Sets the "RunEachTargetSeparately" attribute
         */
        void setRunEachTargetSeparately(java.lang.String runEachTargetSeparately);
        
        /**
         * Sets (as xml) the "RunEachTargetSeparately" attribute
         */
        void xsetRunEachTargetSeparately(io.github.isotes.vs.model.Boolean runEachTargetSeparately);
        
        /**
         * Unsets the "RunEachTargetSeparately" attribute
         */
        void unsetRunEachTargetSeparately();
        
        /**
         * Gets the "SkipNonexistentProjects" attribute
         */
        java.lang.String getSkipNonexistentProjects();
        
        /**
         * Gets (as xml) the "SkipNonexistentProjects" attribute
         */
        io.github.isotes.vs.model.Boolean xgetSkipNonexistentProjects();
        
        /**
         * True if has "SkipNonexistentProjects" attribute
         */
        boolean isSetSkipNonexistentProjects();
        
        /**
         * Sets the "SkipNonexistentProjects" attribute
         */
        void setSkipNonexistentProjects(java.lang.String skipNonexistentProjects);
        
        /**
         * Sets (as xml) the "SkipNonexistentProjects" attribute
         */
        void xsetSkipNonexistentProjects(io.github.isotes.vs.model.Boolean skipNonexistentProjects);
        
        /**
         * Unsets the "SkipNonexistentProjects" attribute
         */
        void unsetSkipNonexistentProjects();
        
        /**
         * Gets the "SkipNonexistentTargets" attribute
         */
        java.lang.String getSkipNonexistentTargets();
        
        /**
         * Gets (as xml) the "SkipNonexistentTargets" attribute
         */
        io.github.isotes.vs.model.Boolean xgetSkipNonexistentTargets();
        
        /**
         * True if has "SkipNonexistentTargets" attribute
         */
        boolean isSetSkipNonexistentTargets();
        
        /**
         * Sets the "SkipNonexistentTargets" attribute
         */
        void setSkipNonexistentTargets(java.lang.String skipNonexistentTargets);
        
        /**
         * Sets (as xml) the "SkipNonexistentTargets" attribute
         */
        void xsetSkipNonexistentTargets(io.github.isotes.vs.model.Boolean skipNonexistentTargets);
        
        /**
         * Unsets the "SkipNonexistentTargets" attribute
         */
        void unsetSkipNonexistentTargets();
        
        /**
         * Gets the "StopOnFirstFailure" attribute
         */
        java.lang.String getStopOnFirstFailure();
        
        /**
         * Gets (as xml) the "StopOnFirstFailure" attribute
         */
        io.github.isotes.vs.model.Boolean xgetStopOnFirstFailure();
        
        /**
         * True if has "StopOnFirstFailure" attribute
         */
        boolean isSetStopOnFirstFailure();
        
        /**
         * Sets the "StopOnFirstFailure" attribute
         */
        void setStopOnFirstFailure(java.lang.String stopOnFirstFailure);
        
        /**
         * Sets (as xml) the "StopOnFirstFailure" attribute
         */
        void xsetStopOnFirstFailure(io.github.isotes.vs.model.Boolean stopOnFirstFailure);
        
        /**
         * Unsets the "StopOnFirstFailure" attribute
         */
        void unsetStopOnFirstFailure();
        
        /**
         * Gets the "TargetAndPropertyListSeparators" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType getTargetAndPropertyListSeparators();
        
        /**
         * True if has "TargetAndPropertyListSeparators" attribute
         */
        boolean isSetTargetAndPropertyListSeparators();
        
        /**
         * Sets the "TargetAndPropertyListSeparators" attribute
         */
        void setTargetAndPropertyListSeparators(org.apache.xmlbeans.XmlAnySimpleType targetAndPropertyListSeparators);
        
        /**
         * Appends and returns a new empty "TargetAndPropertyListSeparators" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType addNewTargetAndPropertyListSeparators();
        
        /**
         * Unsets the "TargetAndPropertyListSeparators" attribute
         */
        void unsetTargetAndPropertyListSeparators();
        
        /**
         * Gets the "Targets" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType getTargets();
        
        /**
         * True if has "Targets" attribute
         */
        boolean isSetTargets();
        
        /**
         * Sets the "Targets" attribute
         */
        void setTargets(org.apache.xmlbeans.XmlAnySimpleType targets);
        
        /**
         * Appends and returns a new empty "Targets" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType addNewTargets();
        
        /**
         * Unsets the "Targets" attribute
         */
        void unsetTargets();
        
        /**
         * Gets the "ToolsVersion" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType getToolsVersion();
        
        /**
         * True if has "ToolsVersion" attribute
         */
        boolean isSetToolsVersion();
        
        /**
         * Sets the "ToolsVersion" attribute
         */
        void setToolsVersion(org.apache.xmlbeans.XmlAnySimpleType toolsVersion);
        
        /**
         * Appends and returns a new empty "ToolsVersion" attribute
         */
        org.apache.xmlbeans.XmlAnySimpleType addNewToolsVersion();
        
        /**
         * Unsets the "ToolsVersion" attribute
         */
        void unsetToolsVersion();
        
        /**
         * Gets the "UnloadProjectsOnCompletion" attribute
         */
        java.lang.String getUnloadProjectsOnCompletion();
        
        /**
         * Gets (as xml) the "UnloadProjectsOnCompletion" attribute
         */
        io.github.isotes.vs.model.Boolean xgetUnloadProjectsOnCompletion();
        
        /**
         * True if has "UnloadProjectsOnCompletion" attribute
         */
        boolean isSetUnloadProjectsOnCompletion();
        
        /**
         * Sets the "UnloadProjectsOnCompletion" attribute
         */
        void setUnloadProjectsOnCompletion(java.lang.String unloadProjectsOnCompletion);
        
        /**
         * Sets (as xml) the "UnloadProjectsOnCompletion" attribute
         */
        void xsetUnloadProjectsOnCompletion(io.github.isotes.vs.model.Boolean unloadProjectsOnCompletion);
        
        /**
         * Unsets the "UnloadProjectsOnCompletion" attribute
         */
        void unsetUnloadProjectsOnCompletion();
        
        /**
         * Gets the "UseResultsCache" attribute
         */
        java.lang.String getUseResultsCache();
        
        /**
         * Gets (as xml) the "UseResultsCache" attribute
         */
        io.github.isotes.vs.model.Boolean xgetUseResultsCache();
        
        /**
         * True if has "UseResultsCache" attribute
         */
        boolean isSetUseResultsCache();
        
        /**
         * Sets the "UseResultsCache" attribute
         */
        void setUseResultsCache(java.lang.String useResultsCache);
        
        /**
         * Sets (as xml) the "UseResultsCache" attribute
         */
        void xsetUseResultsCache(io.github.isotes.vs.model.Boolean useResultsCache);
        
        /**
         * Unsets the "UseResultsCache" attribute
         */
        void unsetUseResultsCache();
        
        /**
         * A factory class with static methods for creating instances
         * of this type.
         */
        
        public static final class Factory
        {
            public static io.github.isotes.vs.model.MSBuildDocument.MSBuild newInstance() {
              return (io.github.isotes.vs.model.MSBuildDocument.MSBuild) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
            
            public static io.github.isotes.vs.model.MSBuildDocument.MSBuild newInstance(org.apache.xmlbeans.XmlOptions options) {
              return (io.github.isotes.vs.model.MSBuildDocument.MSBuild) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
            
            private Factory() { } // No instance of this class allowed
        }
    }
    
    /**
     * A factory class with static methods for creating instances
     * of this type.
     */
    
    public static final class Factory
    {
        public static io.github.isotes.vs.model.MSBuildDocument newInstance() {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
        
        /** @param file the file from which to load an xml document */
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
        
        public static io.github.isotes.vs.model.MSBuildDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static io.github.isotes.vs.model.MSBuildDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static io.github.isotes.vs.model.MSBuildDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (io.github.isotes.vs.model.MSBuildDocument) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy