gov.grants.apply.forms.sf424V10.impl.RevisionOtherExplanationDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: RevisionOtherExplanation
* Namespace: http://apply.grants.gov/forms/SF424-V1.0
* Java type: gov.grants.apply.forms.sf424V10.RevisionOtherExplanationDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424V10.impl;
/**
* A document containing one RevisionOtherExplanation(@http://apply.grants.gov/forms/SF424-V1.0) element.
*
* This is a complex type.
*/
public class RevisionOtherExplanationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.RevisionOtherExplanationDocument
{
private static final long serialVersionUID = 1L;
public RevisionOtherExplanationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName REVISIONOTHEREXPLANATION$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "RevisionOtherExplanation");
/**
* Gets the "RevisionOtherExplanation" element
*/
public java.lang.String getRevisionOtherExplanation()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REVISIONOTHEREXPLANATION$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "RevisionOtherExplanation" element
*/
public gov.grants.apply.system.globalV10.StringMin1Max45Type xgetRevisionOtherExplanation()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max45Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max45Type)get_store().find_element_user(REVISIONOTHEREXPLANATION$0, 0);
return target;
}
}
/**
* Sets the "RevisionOtherExplanation" element
*/
public void setRevisionOtherExplanation(java.lang.String revisionOtherExplanation)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REVISIONOTHEREXPLANATION$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(REVISIONOTHEREXPLANATION$0);
}
target.setStringValue(revisionOtherExplanation);
}
}
/**
* Sets (as xml) the "RevisionOtherExplanation" element
*/
public void xsetRevisionOtherExplanation(gov.grants.apply.system.globalV10.StringMin1Max45Type revisionOtherExplanation)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max45Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max45Type)get_store().find_element_user(REVISIONOTHEREXPLANATION$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.StringMin1Max45Type)get_store().add_element_user(REVISIONOTHEREXPLANATION$0);
}
target.set(revisionOtherExplanation);
}
}
}