io.github.isotes.vs.model.impl.StripPrivateSymbolsDocumentImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vs-model Show documentation
Show all versions of vs-model Show documentation
Generated XMLBeans Java classes for the XML schema of MSBuild project files
The newest version!
/*
* An XML document type.
* Localname: StripPrivateSymbols
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.StripPrivateSymbolsDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one StripPrivateSymbols(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class StripPrivateSymbolsDocumentImpl extends io.github.isotes.vs.model.impl.TaskDocumentImpl implements io.github.isotes.vs.model.StripPrivateSymbolsDocument
{
private static final long serialVersionUID = 1L;
public StripPrivateSymbolsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName STRIPPRIVATESYMBOLS$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "StripPrivateSymbols");
/**
* Gets the "StripPrivateSymbols" element
*/
public io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols getStripPrivateSymbols()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols target = null;
target = (io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols)get_store().find_element_user(STRIPPRIVATESYMBOLS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "StripPrivateSymbols" element
*/
public void setStripPrivateSymbols(io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols stripPrivateSymbols)
{
generatedSetterHelperImpl(stripPrivateSymbols, STRIPPRIVATESYMBOLS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "StripPrivateSymbols" element
*/
public io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols addNewStripPrivateSymbols()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols target = null;
target = (io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols)get_store().add_element_user(STRIPPRIVATESYMBOLS$0);
return target;
}
}
/**
* An XML StripPrivateSymbols(@http://schemas.microsoft.com/developer/msbuild/2003).
*
* This is a complex type.
*/
public static class StripPrivateSymbolsImpl extends io.github.isotes.vs.model.impl.ToolTaskTypeImpl implements io.github.isotes.vs.model.StripPrivateSymbolsDocument.StripPrivateSymbols
{
private static final long serialVersionUID = 1L;
public StripPrivateSymbolsImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PDBCOPYTOOLPATH$0 =
new javax.xml.namespace.QName("", "PdbCopyToolPath");
private static final javax.xml.namespace.QName INPUTPDB$2 =
new javax.xml.namespace.QName("", "InputPdb");
private static final javax.xml.namespace.QName STRIPPEDPDB$4 =
new javax.xml.namespace.QName("", "StrippedPdb");
/**
* Gets the "PdbCopyToolPath" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getPdbCopyToolPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PDBCOPYTOOLPATH$0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "PdbCopyToolPath" attribute
*/
public void setPdbCopyToolPath(org.apache.xmlbeans.XmlAnySimpleType pdbCopyToolPath)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(PDBCOPYTOOLPATH$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PDBCOPYTOOLPATH$0);
}
target.set(pdbCopyToolPath);
}
}
/**
* Appends and returns a new empty "PdbCopyToolPath" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewPdbCopyToolPath()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(PDBCOPYTOOLPATH$0);
return target;
}
}
/**
* Gets the "InputPdb" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getInputPdb()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTPDB$2);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "InputPdb" attribute
*/
public void setInputPdb(org.apache.xmlbeans.XmlAnySimpleType inputPdb)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(INPUTPDB$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTPDB$2);
}
target.set(inputPdb);
}
}
/**
* Appends and returns a new empty "InputPdb" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewInputPdb()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(INPUTPDB$2);
return target;
}
}
/**
* Gets the "StrippedPdb" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType getStrippedPdb()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(STRIPPEDPDB$4);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "StrippedPdb" attribute
*/
public void setStrippedPdb(org.apache.xmlbeans.XmlAnySimpleType strippedPdb)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().find_attribute_user(STRIPPEDPDB$4);
if (target == null)
{
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(STRIPPEDPDB$4);
}
target.set(strippedPdb);
}
}
/**
* Appends and returns a new empty "StrippedPdb" attribute
*/
public org.apache.xmlbeans.XmlAnySimpleType addNewStrippedPdb()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlAnySimpleType target = null;
target = (org.apache.xmlbeans.XmlAnySimpleType)get_store().add_attribute_user(STRIPPEDPDB$4);
return target;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy