gov.grants.apply.system.grantsCommonElementsV10.impl.CFDADescriptionDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: CFDADescription
* Namespace: http://apply.grants.gov/system/GrantsCommonElements-V1.0
* Java type: gov.grants.apply.system.grantsCommonElementsV10.CFDADescriptionDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.system.grantsCommonElementsV10.impl;
/**
* A document containing one CFDADescription(@http://apply.grants.gov/system/GrantsCommonElements-V1.0) element.
*
* This is a complex type.
*/
public class CFDADescriptionDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.system.grantsCommonElementsV10.CFDADescriptionDocument
{
private static final long serialVersionUID = 1L;
public CFDADescriptionDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CFDADESCRIPTION$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/system/GrantsCommonElements-V1.0", "CFDADescription");
/**
* Gets the "CFDADescription" element
*/
public java.lang.String getCFDADescription()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDADESCRIPTION$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "CFDADescription" element
*/
public gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type xgetCFDADescription()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type target = null;
target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().find_element_user(CFDADESCRIPTION$0, 0);
return target;
}
}
/**
* Sets the "CFDADescription" element
*/
public void setCFDADescription(java.lang.String cfdaDescription)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDADESCRIPTION$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CFDADESCRIPTION$0);
}
target.setStringValue(cfdaDescription);
}
}
/**
* Sets (as xml) the "CFDADescription" element
*/
public void xsetCFDADescription(gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type cfdaDescription)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type target = null;
target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().find_element_user(CFDADESCRIPTION$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.grantsCommonTypesV10.StringWithoutNewLine255Type)get_store().add_element_user(CFDADESCRIPTION$0);
}
target.set(cfdaDescription);
}
}
}