
io.github.isotes.vs.model.impl.WsdlXsdCodeGenUseSerializerForFaultsDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: WsdlXsdCodeGenUseSerializerForFaults
* Namespace: http://schemas.microsoft.com/developer/msbuild/2003
* Java type: io.github.isotes.vs.model.WsdlXsdCodeGenUseSerializerForFaultsDocument
*
* Automatically generated - do not modify.
*/
package io.github.isotes.vs.model.impl;
/**
* A document containing one WsdlXsdCodeGenUseSerializerForFaults(@http://schemas.microsoft.com/developer/msbuild/2003) element.
*
* This is a complex type.
*/
public class WsdlXsdCodeGenUseSerializerForFaultsDocumentImpl extends io.github.isotes.vs.model.impl.PropertyDocumentImpl implements io.github.isotes.vs.model.WsdlXsdCodeGenUseSerializerForFaultsDocument
{
private static final long serialVersionUID = 1L;
public WsdlXsdCodeGenUseSerializerForFaultsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/developer/msbuild/2003", "WsdlXsdCodeGenUseSerializerForFaults");
/**
* Gets the "WsdlXsdCodeGenUseSerializerForFaults" element
*/
public java.lang.String getWsdlXsdCodeGenUseSerializerForFaults()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "WsdlXsdCodeGenUseSerializerForFaults" element
*/
public io.github.isotes.vs.model.Boolean xgetWsdlXsdCodeGenUseSerializerForFaults()
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0, 0);
return target;
}
}
/**
* Sets the "WsdlXsdCodeGenUseSerializerForFaults" element
*/
public void setWsdlXsdCodeGenUseSerializerForFaults(java.lang.String wsdlXsdCodeGenUseSerializerForFaults)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0);
}
target.setStringValue(wsdlXsdCodeGenUseSerializerForFaults);
}
}
/**
* Sets (as xml) the "WsdlXsdCodeGenUseSerializerForFaults" element
*/
public void xsetWsdlXsdCodeGenUseSerializerForFaults(io.github.isotes.vs.model.Boolean wsdlXsdCodeGenUseSerializerForFaults)
{
synchronized (monitor())
{
check_orphaned();
io.github.isotes.vs.model.Boolean target = null;
target = (io.github.isotes.vs.model.Boolean)get_store().find_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0, 0);
if (target == null)
{
target = (io.github.isotes.vs.model.Boolean)get_store().add_element_user(WSDLXSDCODEGENUSESERIALIZERFORFAULTS$0);
}
target.set(wsdlXsdCodeGenUseSerializerForFaults);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy