View Javadoc
1   /*
2    * An XML document type.
3    * Localname: CostSharingOrMatchingRequirement
4    * Namespace: http://apply.grants.gov/system/GrantsFundingSynopsis-V2.0
5    * Java type: gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument
6    *
7    * Automatically generated - do not modify.
8    */
9   package gov.grants.apply.system.grantsFundingSynopsisV20.impl;
10  /**
11   * A document containing one CostSharingOrMatchingRequirement(@http://apply.grants.gov/system/GrantsFundingSynopsis-V2.0) element.
12   *
13   * This is a complex type.
14   */
15  public class CostSharingOrMatchingRequirementDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument
16  {
17      private static final long serialVersionUID = 1L;
18      
19      public CostSharingOrMatchingRequirementDocumentImpl(org.apache.xmlbeans.SchemaType sType)
20      {
21          super(sType);
22      }
23      
24      private static final javax.xml.namespace.QName COSTSHARINGORMATCHINGREQUIREMENT$0 = 
25          new javax.xml.namespace.QName("http://apply.grants.gov/system/GrantsFundingSynopsis-V2.0", "CostSharingOrMatchingRequirement");
26      
27      
28      /**
29       * Gets the "CostSharingOrMatchingRequirement" element
30       */
31      public gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement.Enum getCostSharingOrMatchingRequirement()
32      {
33          synchronized (monitor())
34          {
35              check_orphaned();
36              org.apache.xmlbeans.SimpleValue target = null;
37              target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0, 0);
38              if (target == null)
39              {
40                  return null;
41              }
42              return (gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement.Enum)target.getEnumValue();
43          }
44      }
45      
46      /**
47       * Gets (as xml) the "CostSharingOrMatchingRequirement" element
48       */
49      public gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement xgetCostSharingOrMatchingRequirement()
50      {
51          synchronized (monitor())
52          {
53              check_orphaned();
54              gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement target = null;
55              target = (gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement)get_store().find_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0, 0);
56              return target;
57          }
58      }
59      
60      /**
61       * Sets the "CostSharingOrMatchingRequirement" element
62       */
63      public void setCostSharingOrMatchingRequirement(gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement.Enum costSharingOrMatchingRequirement)
64      {
65          synchronized (monitor())
66          {
67              check_orphaned();
68              org.apache.xmlbeans.SimpleValue target = null;
69              target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0, 0);
70              if (target == null)
71              {
72                  target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0);
73              }
74              target.setEnumValue(costSharingOrMatchingRequirement);
75          }
76      }
77      
78      /**
79       * Sets (as xml) the "CostSharingOrMatchingRequirement" element
80       */
81      public void xsetCostSharingOrMatchingRequirement(gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement costSharingOrMatchingRequirement)
82      {
83          synchronized (monitor())
84          {
85              check_orphaned();
86              gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement target = null;
87              target = (gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement)get_store().find_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0, 0);
88              if (target == null)
89              {
90                  target = (gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement)get_store().add_element_user(COSTSHARINGORMATCHINGREQUIREMENT$0);
91              }
92              target.set(costSharingOrMatchingRequirement);
93          }
94      }
95      /**
96       * An XML CostSharingOrMatchingRequirement(@http://apply.grants.gov/system/GrantsFundingSynopsis-V2.0).
97       *
98       * This is an atomic type that is a restriction of gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument$CostSharingOrMatchingRequirement.
99       */
100     public static class CostSharingOrMatchingRequirementImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements gov.grants.apply.system.grantsFundingSynopsisV20.CostSharingOrMatchingRequirementDocument.CostSharingOrMatchingRequirement
101     {
102         private static final long serialVersionUID = 1L;
103         
104         public CostSharingOrMatchingRequirementImpl(org.apache.xmlbeans.SchemaType sType)
105         {
106             super(sType, false);
107         }
108         
109         protected CostSharingOrMatchingRequirementImpl(org.apache.xmlbeans.SchemaType sType, boolean b)
110         {
111             super(sType, b);
112         }
113     }
114 }