gov.grants.apply.forms.sf424AV10.impl.RemarksDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: Remarks
* Namespace: http://apply.grants.gov/forms/SF424A-V1.0
* Java type: gov.grants.apply.forms.sf424AV10.RemarksDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424AV10.impl;
/**
* A document containing one Remarks(@http://apply.grants.gov/forms/SF424A-V1.0) element.
*
* This is a complex type.
*/
public class RemarksDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424AV10.RemarksDocument
{
private static final long serialVersionUID = 1L;
public RemarksDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName REMARKS$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "Remarks");
/**
* Gets the "Remarks" element
*/
public java.lang.String getRemarks()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REMARKS$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "Remarks" element
*/
public gov.grants.apply.system.globalV10.StringMin1Max250Type xgetRemarks()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max250Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max250Type)get_store().find_element_user(REMARKS$0, 0);
return target;
}
}
/**
* Sets the "Remarks" element
*/
public void setRemarks(java.lang.String remarks)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(REMARKS$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(REMARKS$0);
}
target.setStringValue(remarks);
}
}
/**
* Sets (as xml) the "Remarks" element
*/
public void xsetRemarks(gov.grants.apply.system.globalV10.StringMin1Max250Type remarks)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max250Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max250Type)get_store().find_element_user(REMARKS$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.StringMin1Max250Type)get_store().add_element_user(REMARKS$0);
}
target.set(remarks);
}
}
}