All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
gov.grants.apply.forms.sf424AV10.impl.SummaryLineItemDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: SummaryLineItem
* Namespace: http://apply.grants.gov/forms/SF424A-V1.0
* Java type: gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument
*
* Automatically generated - do not modify.
*/
package gov.grants.apply.forms.sf424AV10.impl;
/**
* A document containing one SummaryLineItem(@http://apply.grants.gov/forms/SF424A-V1.0) element.
*
* This is a complex type.
*/
public class SummaryLineItemDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument
{
private static final long serialVersionUID = 1L;
public SummaryLineItemDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SUMMARYLINEITEM$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "SummaryLineItem");
/**
* Gets the "SummaryLineItem" element
*/
public gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem getSummaryLineItem()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem target = null;
target = (gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem)get_store().find_element_user(SUMMARYLINEITEM$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "SummaryLineItem" element
*/
public void setSummaryLineItem(gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem summaryLineItem)
{
generatedSetterHelperImpl(summaryLineItem, SUMMARYLINEITEM$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "SummaryLineItem" element
*/
public gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem addNewSummaryLineItem()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem target = null;
target = (gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem)get_store().add_element_user(SUMMARYLINEITEM$0);
return target;
}
}
/**
* An XML SummaryLineItem(@http://apply.grants.gov/forms/SF424A-V1.0).
*
* This is a complex type.
*/
public static class SummaryLineItemImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424AV10.SummaryLineItemDocument.SummaryLineItem
{
private static final long serialVersionUID = 1L;
public SummaryLineItemImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName CFDANUMBER$0 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "CFDANumber");
private static final javax.xml.namespace.QName BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "BudgetFederalEstimatedUnobligatedAmount");
private static final javax.xml.namespace.QName BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "BudgetNonFederalEstimatedUnobligatedAmount");
private static final javax.xml.namespace.QName BUDGETFEDERALNEWORREVISEDAMOUNT$6 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "BudgetFederalNewOrRevisedAmount");
private static final javax.xml.namespace.QName BUDGETNONFEDERALNEWORREVISEDAMOUNT$8 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "BudgetNonFederalNewOrRevisedAmount");
private static final javax.xml.namespace.QName BUDGETTOTALNEWORREVISEDAMOUNT$10 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "BudgetTotalNewOrRevisedAmount");
private static final javax.xml.namespace.QName ACTIVITYTITLE$12 =
new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "activityTitle");
/**
* Gets the "CFDANumber" element
*/
public java.lang.String getCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "CFDANumber" element
*/
public gov.grants.apply.system.globalV10.StringMin1Max15Type xgetCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max15Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().find_element_user(CFDANUMBER$0, 0);
return target;
}
}
/**
* True if has "CFDANumber" element
*/
public boolean isSetCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(CFDANUMBER$0) != 0;
}
}
/**
* Sets the "CFDANumber" element
*/
public void setCFDANumber(java.lang.String cfdaNumber)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CFDANUMBER$0);
}
target.setStringValue(cfdaNumber);
}
}
/**
* Sets (as xml) the "CFDANumber" element
*/
public void xsetCFDANumber(gov.grants.apply.system.globalV10.StringMin1Max15Type cfdaNumber)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max15Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().find_element_user(CFDANUMBER$0, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.StringMin1Max15Type)get_store().add_element_user(CFDANUMBER$0);
}
target.set(cfdaNumber);
}
}
/**
* Unsets the "CFDANumber" element
*/
public void unsetCFDANumber()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(CFDANUMBER$0, 0);
}
}
/**
* Gets the "BudgetFederalEstimatedUnobligatedAmount" element
*/
public java.math.BigDecimal getBudgetFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "BudgetFederalEstimatedUnobligatedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetBudgetFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2, 0);
return target;
}
}
/**
* True if has "BudgetFederalEstimatedUnobligatedAmount" element
*/
public boolean isSetBudgetFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2) != 0;
}
}
/**
* Sets the "BudgetFederalEstimatedUnobligatedAmount" element
*/
public void setBudgetFederalEstimatedUnobligatedAmount(java.math.BigDecimal budgetFederalEstimatedUnobligatedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2);
}
target.setBigDecimalValue(budgetFederalEstimatedUnobligatedAmount);
}
}
/**
* Sets (as xml) the "BudgetFederalEstimatedUnobligatedAmount" element
*/
public void xsetBudgetFederalEstimatedUnobligatedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type budgetFederalEstimatedUnobligatedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2);
}
target.set(budgetFederalEstimatedUnobligatedAmount);
}
}
/**
* Unsets the "BudgetFederalEstimatedUnobligatedAmount" element
*/
public void unsetBudgetFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(BUDGETFEDERALESTIMATEDUNOBLIGATEDAMOUNT$2, 0);
}
}
/**
* Gets the "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public java.math.BigDecimal getBudgetNonFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetBudgetNonFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4, 0);
return target;
}
}
/**
* True if has "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public boolean isSetBudgetNonFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4) != 0;
}
}
/**
* Sets the "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public void setBudgetNonFederalEstimatedUnobligatedAmount(java.math.BigDecimal budgetNonFederalEstimatedUnobligatedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4);
}
target.setBigDecimalValue(budgetNonFederalEstimatedUnobligatedAmount);
}
}
/**
* Sets (as xml) the "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public void xsetBudgetNonFederalEstimatedUnobligatedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type budgetNonFederalEstimatedUnobligatedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4);
}
target.set(budgetNonFederalEstimatedUnobligatedAmount);
}
}
/**
* Unsets the "BudgetNonFederalEstimatedUnobligatedAmount" element
*/
public void unsetBudgetNonFederalEstimatedUnobligatedAmount()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(BUDGETNONFEDERALESTIMATEDUNOBLIGATEDAMOUNT$4, 0);
}
}
/**
* Gets the "BudgetFederalNewOrRevisedAmount" element
*/
public java.math.BigDecimal getBudgetFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "BudgetFederalNewOrRevisedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetBudgetFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6, 0);
return target;
}
}
/**
* True if has "BudgetFederalNewOrRevisedAmount" element
*/
public boolean isSetBudgetFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(BUDGETFEDERALNEWORREVISEDAMOUNT$6) != 0;
}
}
/**
* Sets the "BudgetFederalNewOrRevisedAmount" element
*/
public void setBudgetFederalNewOrRevisedAmount(java.math.BigDecimal budgetFederalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6);
}
target.setBigDecimalValue(budgetFederalNewOrRevisedAmount);
}
}
/**
* Sets (as xml) the "BudgetFederalNewOrRevisedAmount" element
*/
public void xsetBudgetFederalNewOrRevisedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type budgetFederalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(BUDGETFEDERALNEWORREVISEDAMOUNT$6);
}
target.set(budgetFederalNewOrRevisedAmount);
}
}
/**
* Unsets the "BudgetFederalNewOrRevisedAmount" element
*/
public void unsetBudgetFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(BUDGETFEDERALNEWORREVISEDAMOUNT$6, 0);
}
}
/**
* Gets the "BudgetNonFederalNewOrRevisedAmount" element
*/
public java.math.BigDecimal getBudgetNonFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "BudgetNonFederalNewOrRevisedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetBudgetNonFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8, 0);
return target;
}
}
/**
* True if has "BudgetNonFederalNewOrRevisedAmount" element
*/
public boolean isSetBudgetNonFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8) != 0;
}
}
/**
* Sets the "BudgetNonFederalNewOrRevisedAmount" element
*/
public void setBudgetNonFederalNewOrRevisedAmount(java.math.BigDecimal budgetNonFederalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8);
}
target.setBigDecimalValue(budgetNonFederalNewOrRevisedAmount);
}
}
/**
* Sets (as xml) the "BudgetNonFederalNewOrRevisedAmount" element
*/
public void xsetBudgetNonFederalNewOrRevisedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type budgetNonFederalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8);
}
target.set(budgetNonFederalNewOrRevisedAmount);
}
}
/**
* Unsets the "BudgetNonFederalNewOrRevisedAmount" element
*/
public void unsetBudgetNonFederalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(BUDGETNONFEDERALNEWORREVISEDAMOUNT$8, 0);
}
}
/**
* Gets the "BudgetTotalNewOrRevisedAmount" element
*/
public java.math.BigDecimal getBudgetTotalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10, 0);
if (target == null)
{
return null;
}
return target.getBigDecimalValue();
}
}
/**
* Gets (as xml) the "BudgetTotalNewOrRevisedAmount" element
*/
public gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type xgetBudgetTotalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10, 0);
return target;
}
}
/**
* True if has "BudgetTotalNewOrRevisedAmount" element
*/
public boolean isSetBudgetTotalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
return get_store().count_elements(BUDGETTOTALNEWORREVISEDAMOUNT$10) != 0;
}
}
/**
* Sets the "BudgetTotalNewOrRevisedAmount" element
*/
public void setBudgetTotalNewOrRevisedAmount(java.math.BigDecimal budgetTotalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10);
}
target.setBigDecimalValue(budgetTotalNewOrRevisedAmount);
}
}
/**
* Sets (as xml) the "BudgetTotalNewOrRevisedAmount" element
*/
public void xsetBudgetTotalNewOrRevisedAmount(gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type budgetTotalNewOrRevisedAmount)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type target = null;
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().find_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10, 0);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.DecimalMin1Max14Places2Type)get_store().add_element_user(BUDGETTOTALNEWORREVISEDAMOUNT$10);
}
target.set(budgetTotalNewOrRevisedAmount);
}
}
/**
* Unsets the "BudgetTotalNewOrRevisedAmount" element
*/
public void unsetBudgetTotalNewOrRevisedAmount()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_element(BUDGETTOTALNEWORREVISEDAMOUNT$10, 0);
}
}
/**
* Gets the "activityTitle" attribute
*/
public java.lang.String getActivityTitle()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ACTIVITYTITLE$12);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "activityTitle" attribute
*/
public gov.grants.apply.system.globalV10.StringMin1Max120Type xgetActivityTitle()
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max120Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().find_attribute_user(ACTIVITYTITLE$12);
return target;
}
}
/**
* Sets the "activityTitle" attribute
*/
public void setActivityTitle(java.lang.String activityTitle)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ACTIVITYTITLE$12);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ACTIVITYTITLE$12);
}
target.setStringValue(activityTitle);
}
}
/**
* Sets (as xml) the "activityTitle" attribute
*/
public void xsetActivityTitle(gov.grants.apply.system.globalV10.StringMin1Max120Type activityTitle)
{
synchronized (monitor())
{
check_orphaned();
gov.grants.apply.system.globalV10.StringMin1Max120Type target = null;
target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().find_attribute_user(ACTIVITYTITLE$12);
if (target == null)
{
target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().add_attribute_user(ACTIVITYTITLE$12);
}
target.set(activityTitle);
}
}
}
}