1   
2   
3   
4   
5   
6   
7   
8   
9   package gov.grants.apply.forms.sf424V10.impl;
10  
11  
12  
13  
14  
15  public class GivenName2DocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424V10.GivenName2Document
16  {
17      private static final long serialVersionUID = 1L;
18      
19      public GivenName2DocumentImpl(org.apache.xmlbeans.SchemaType sType)
20      {
21          super(sType);
22      }
23      
24      private static final javax.xml.namespace.QName GIVENNAME2$0 = 
25          new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424-V1.0", "GivenName2");
26      
27      
28      
29  
30  
31      public java.lang.String getGivenName2()
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(GIVENNAME2$0, 0);
38              if (target == null)
39              {
40                  return null;
41              }
42              return target.getStringValue();
43          }
44      }
45      
46      
47  
48  
49      public gov.grants.apply.system.globalV10.StringMin1Max25Type xgetGivenName2()
50      {
51          synchronized (monitor())
52          {
53              check_orphaned();
54              gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
55              target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(GIVENNAME2$0, 0);
56              return target;
57          }
58      }
59      
60      
61  
62  
63      public void setGivenName2(java.lang.String givenName2)
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(GIVENNAME2$0, 0);
70              if (target == null)
71              {
72                  target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(GIVENNAME2$0);
73              }
74              target.setStringValue(givenName2);
75          }
76      }
77      
78      
79  
80  
81      public void xsetGivenName2(gov.grants.apply.system.globalV10.StringMin1Max25Type givenName2)
82      {
83          synchronized (monitor())
84          {
85              check_orphaned();
86              gov.grants.apply.system.globalV10.StringMin1Max25Type target = null;
87              target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().find_element_user(GIVENNAME2$0, 0);
88              if (target == null)
89              {
90                  target = (gov.grants.apply.system.globalV10.StringMin1Max25Type)get_store().add_element_user(GIVENNAME2$0);
91              }
92              target.set(givenName2);
93          }
94      }
95  }