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