View Javadoc
1   /*
2    * An XML document type.
3    * Localname: ProjectNarrativeAttachments
4    * Namespace: http://apply.grants.gov/forms/Project-V1.0
5    * Java type: gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument
6    *
7    * Automatically generated - do not modify.
8    */
9   package gov.grants.apply.forms.projectV10.impl;
10  /**
11   * A document containing one ProjectNarrativeAttachments(@http://apply.grants.gov/forms/Project-V1.0) element.
12   *
13   * This is a complex type.
14   */
15  public class ProjectNarrativeAttachmentsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument
16  {
17      private static final long serialVersionUID = 1L;
18      
19      public ProjectNarrativeAttachmentsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
20      {
21          super(sType);
22      }
23      
24      private static final javax.xml.namespace.QName PROJECTNARRATIVEATTACHMENTS$0 = 
25          new javax.xml.namespace.QName("http://apply.grants.gov/forms/Project-V1.0", "ProjectNarrativeAttachments");
26      
27      
28      /**
29       * Gets the "ProjectNarrativeAttachments" element
30       */
31      public gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments getProjectNarrativeAttachments()
32      {
33          synchronized (monitor())
34          {
35              check_orphaned();
36              gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments target = null;
37              target = (gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments)get_store().find_element_user(PROJECTNARRATIVEATTACHMENTS$0, 0);
38              if (target == null)
39              {
40                  return null;
41              }
42              return target;
43          }
44      }
45      
46      /**
47       * Sets the "ProjectNarrativeAttachments" element
48       */
49      public void setProjectNarrativeAttachments(gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments projectNarrativeAttachments)
50      {
51          generatedSetterHelperImpl(projectNarrativeAttachments, PROJECTNARRATIVEATTACHMENTS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
52      }
53      
54      /**
55       * Appends and returns a new empty "ProjectNarrativeAttachments" element
56       */
57      public gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments addNewProjectNarrativeAttachments()
58      {
59          synchronized (monitor())
60          {
61              check_orphaned();
62              gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments target = null;
63              target = (gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments)get_store().add_element_user(PROJECTNARRATIVEATTACHMENTS$0);
64              return target;
65          }
66      }
67      /**
68       * An XML ProjectNarrativeAttachments(@http://apply.grants.gov/forms/Project-V1.0).
69       *
70       * This is a complex type.
71       */
72      public static class ProjectNarrativeAttachmentsImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.projectV10.ProjectNarrativeAttachmentsDocument.ProjectNarrativeAttachments
73      {
74          private static final long serialVersionUID = 1L;
75          
76          public ProjectNarrativeAttachmentsImpl(org.apache.xmlbeans.SchemaType sType)
77          {
78              super(sType);
79          }
80          
81          private static final javax.xml.namespace.QName ATTACHMENTS$0 = 
82              new javax.xml.namespace.QName("http://apply.grants.gov/forms/Project-V1.0", "Attachments");
83          private static final javax.xml.namespace.QName FORMVERSION$2 = 
84              new javax.xml.namespace.QName("http://apply.grants.gov/forms/Project-V1.0", "FormVersion");
85          
86          
87          /**
88           * Gets the "Attachments" element
89           */
90          public gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType getAttachments()
91          {
92              synchronized (monitor())
93              {
94                  check_orphaned();
95                  gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType target = null;
96                  target = (gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType)get_store().find_element_user(ATTACHMENTS$0, 0);
97                  if (target == null)
98                  {
99                      return null;
100                 }
101                 return target;
102             }
103         }
104         
105         /**
106          * Sets the "Attachments" element
107          */
108         public void setAttachments(gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType attachments)
109         {
110             generatedSetterHelperImpl(attachments, ATTACHMENTS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
111         }
112         
113         /**
114          * Appends and returns a new empty "Attachments" element
115          */
116         public gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType addNewAttachments()
117         {
118             synchronized (monitor())
119             {
120                 check_orphaned();
121                 gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType target = null;
122                 target = (gov.grants.apply.system.attachmentsV10.AttachmentGroupMin1Max100DataType)get_store().add_element_user(ATTACHMENTS$0);
123                 return target;
124             }
125         }
126         
127         /**
128          * Gets the "FormVersion" attribute
129          */
130         public java.lang.String getFormVersion()
131         {
132             synchronized (monitor())
133             {
134                 check_orphaned();
135                 org.apache.xmlbeans.SimpleValue target = null;
136                 target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORMVERSION$2);
137                 if (target == null)
138                 {
139                     target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(FORMVERSION$2);
140                 }
141                 if (target == null)
142                 {
143                     return null;
144                 }
145                 return target.getStringValue();
146             }
147         }
148         
149         /**
150          * Gets (as xml) the "FormVersion" attribute
151          */
152         public gov.grants.apply.system.globalLibraryV10.FormVersionDataType xgetFormVersion()
153         {
154             synchronized (monitor())
155             {
156                 check_orphaned();
157                 gov.grants.apply.system.globalLibraryV10.FormVersionDataType target = null;
158                 target = (gov.grants.apply.system.globalLibraryV10.FormVersionDataType)get_store().find_attribute_user(FORMVERSION$2);
159                 if (target == null)
160                 {
161                     target = (gov.grants.apply.system.globalLibraryV10.FormVersionDataType)get_default_attribute_value(FORMVERSION$2);
162                 }
163                 return target;
164             }
165         }
166         
167         /**
168          * Sets the "FormVersion" attribute
169          */
170         public void setFormVersion(java.lang.String formVersion)
171         {
172             synchronized (monitor())
173             {
174                 check_orphaned();
175                 org.apache.xmlbeans.SimpleValue target = null;
176                 target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(FORMVERSION$2);
177                 if (target == null)
178                 {
179                     target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(FORMVERSION$2);
180                 }
181                 target.setStringValue(formVersion);
182             }
183         }
184         
185         /**
186          * Sets (as xml) the "FormVersion" attribute
187          */
188         public void xsetFormVersion(gov.grants.apply.system.globalLibraryV10.FormVersionDataType formVersion)
189         {
190             synchronized (monitor())
191             {
192                 check_orphaned();
193                 gov.grants.apply.system.globalLibraryV10.FormVersionDataType target = null;
194                 target = (gov.grants.apply.system.globalLibraryV10.FormVersionDataType)get_store().find_attribute_user(FORMVERSION$2);
195                 if (target == null)
196                 {
197                     target = (gov.grants.apply.system.globalLibraryV10.FormVersionDataType)get_store().add_attribute_user(FORMVERSION$2);
198                 }
199                 target.set(formVersion);
200             }
201         }
202     }
203 }