View Javadoc
1   /*
2    * An XML attribute type.
3    * Localname: activityTitle
4    * Namespace: http://apply.grants.gov/forms/SF424A-V1.0
5    * Java type: gov.grants.apply.forms.sf424AV10.ActivityTitleAttribute
6    *
7    * Automatically generated - do not modify.
8    */
9   package gov.grants.apply.forms.sf424AV10.impl;
10  /**
11   * A document containing one activityTitle(@http://apply.grants.gov/forms/SF424A-V1.0) attribute.
12   *
13   * This is a complex type.
14   */
15  public class ActivityTitleAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements gov.grants.apply.forms.sf424AV10.ActivityTitleAttribute
16  {
17      private static final long serialVersionUID = 1L;
18      
19      public ActivityTitleAttributeImpl(org.apache.xmlbeans.SchemaType sType)
20      {
21          super(sType);
22      }
23      
24      private static final javax.xml.namespace.QName ACTIVITYTITLE$0 = 
25          new javax.xml.namespace.QName("http://apply.grants.gov/forms/SF424A-V1.0", "activityTitle");
26      
27      
28      /**
29       * Gets the "activityTitle" attribute
30       */
31      public java.lang.String getActivityTitle()
32      {
33          synchronized (monitor())
34          {
35              check_orphaned();
36              org.apache.xmlbeans.SimpleValue target = null;
37              target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ACTIVITYTITLE$0);
38              if (target == null)
39              {
40                  return null;
41              }
42              return target.getStringValue();
43          }
44      }
45      
46      /**
47       * Gets (as xml) the "activityTitle" attribute
48       */
49      public gov.grants.apply.system.globalV10.StringMin1Max120Type xgetActivityTitle()
50      {
51          synchronized (monitor())
52          {
53              check_orphaned();
54              gov.grants.apply.system.globalV10.StringMin1Max120Type target = null;
55              target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().find_attribute_user(ACTIVITYTITLE$0);
56              return target;
57          }
58      }
59      
60      /**
61       * True if has "activityTitle" attribute
62       */
63      public boolean isSetActivityTitle()
64      {
65          synchronized (monitor())
66          {
67              check_orphaned();
68              return get_store().find_attribute_user(ACTIVITYTITLE$0) != null;
69          }
70      }
71      
72      /**
73       * Sets the "activityTitle" attribute
74       */
75      public void setActivityTitle(java.lang.String activityTitle)
76      {
77          synchronized (monitor())
78          {
79              check_orphaned();
80              org.apache.xmlbeans.SimpleValue target = null;
81              target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ACTIVITYTITLE$0);
82              if (target == null)
83              {
84                  target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ACTIVITYTITLE$0);
85              }
86              target.setStringValue(activityTitle);
87          }
88      }
89      
90      /**
91       * Sets (as xml) the "activityTitle" attribute
92       */
93      public void xsetActivityTitle(gov.grants.apply.system.globalV10.StringMin1Max120Type activityTitle)
94      {
95          synchronized (monitor())
96          {
97              check_orphaned();
98              gov.grants.apply.system.globalV10.StringMin1Max120Type target = null;
99              target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().find_attribute_user(ACTIVITYTITLE$0);
100             if (target == null)
101             {
102                 target = (gov.grants.apply.system.globalV10.StringMin1Max120Type)get_store().add_attribute_user(ACTIVITYTITLE$0);
103             }
104             target.set(activityTitle);
105         }
106     }
107     
108     /**
109      * Unsets the "activityTitle" attribute
110      */
111     public void unsetActivityTitle()
112     {
113         synchronized (monitor())
114         {
115             check_orphaned();
116             get_store().remove_attribute(ACTIVITYTITLE$0);
117         }
118     }
119 }