View Javadoc

1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2007.09.26 at 09:37:45 PM IST 
6   //
7   
8   
9   package org.xmlhammer.model.project;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /***
18   * <p>Java class for exception complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="exception">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="clazz" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
27   *       &lt;attribute name="column" type="{http://www.w3.org/2001/XMLSchema}int" />
28   *       &lt;attribute name="line" type="{http://www.w3.org/2001/XMLSchema}int" />
29   *       &lt;attribute name="localizedMessage" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
30   *       &lt;attribute name="message" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
31   *       &lt;attribute name="publicId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
32   *       &lt;attribute name="src" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
33   *       &lt;attribute name="systemId" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
34   *     &lt;/restriction>
35   *   &lt;/complexContent>
36   * &lt;/complexType>
37   * </pre>
38   * 
39   * 
40   */
41  @XmlAccessorType(XmlAccessType.FIELD)
42  @XmlType(name = "exception")
43  public class Exception {
44  
45      @XmlAttribute(required = true)
46      protected java.lang.String clazz;
47      @XmlAttribute
48      protected Integer column;
49      @XmlAttribute
50      protected Integer line;
51      @XmlAttribute(required = true)
52      protected java.lang.String localizedMessage;
53      @XmlAttribute(required = true)
54      protected java.lang.String message;
55      @XmlAttribute(required = true)
56      protected java.lang.String publicId;
57      @XmlAttribute(required = true)
58      protected java.lang.String src;
59      @XmlAttribute(required = true)
60      protected java.lang.String systemId;
61  
62      /***
63       * Gets the value of the clazz property.
64       * 
65       * @return
66       *     possible object is
67       *     {@link java.lang.String }
68       *     
69       */
70      public java.lang.String getClazz() {
71          return clazz;
72      }
73  
74      /***
75       * Sets the value of the clazz property.
76       * 
77       * @param value
78       *     allowed object is
79       *     {@link java.lang.String }
80       *     
81       */
82      public void setClazz(java.lang.String value) {
83          this.clazz = value;
84      }
85  
86      /***
87       * Gets the value of the column property.
88       * 
89       * @return
90       *     possible object is
91       *     {@link Integer }
92       *     
93       */
94      public Integer getColumn() {
95          return column;
96      }
97  
98      /***
99       * Sets the value of the column property.
100      * 
101      * @param value
102      *     allowed object is
103      *     {@link Integer }
104      *     
105      */
106     public void setColumn(Integer value) {
107         this.column = value;
108     }
109 
110     /***
111      * Gets the value of the line property.
112      * 
113      * @return
114      *     possible object is
115      *     {@link Integer }
116      *     
117      */
118     public Integer getLine() {
119         return line;
120     }
121 
122     /***
123      * Sets the value of the line property.
124      * 
125      * @param value
126      *     allowed object is
127      *     {@link Integer }
128      *     
129      */
130     public void setLine(Integer value) {
131         this.line = value;
132     }
133 
134     /***
135      * Gets the value of the localizedMessage property.
136      * 
137      * @return
138      *     possible object is
139      *     {@link java.lang.String }
140      *     
141      */
142     public java.lang.String getLocalizedMessage() {
143         return localizedMessage;
144     }
145 
146     /***
147      * Sets the value of the localizedMessage property.
148      * 
149      * @param value
150      *     allowed object is
151      *     {@link java.lang.String }
152      *     
153      */
154     public void setLocalizedMessage(java.lang.String value) {
155         this.localizedMessage = value;
156     }
157 
158     /***
159      * Gets the value of the message property.
160      * 
161      * @return
162      *     possible object is
163      *     {@link java.lang.String }
164      *     
165      */
166     public java.lang.String getMessage() {
167         return message;
168     }
169 
170     /***
171      * Sets the value of the message property.
172      * 
173      * @param value
174      *     allowed object is
175      *     {@link java.lang.String }
176      *     
177      */
178     public void setMessage(java.lang.String value) {
179         this.message = value;
180     }
181 
182     /***
183      * Gets the value of the publicId property.
184      * 
185      * @return
186      *     possible object is
187      *     {@link java.lang.String }
188      *     
189      */
190     public java.lang.String getPublicId() {
191         return publicId;
192     }
193 
194     /***
195      * Sets the value of the publicId property.
196      * 
197      * @param value
198      *     allowed object is
199      *     {@link java.lang.String }
200      *     
201      */
202     public void setPublicId(java.lang.String value) {
203         this.publicId = value;
204     }
205 
206     /***
207      * Gets the value of the src property.
208      * 
209      * @return
210      *     possible object is
211      *     {@link java.lang.String }
212      *     
213      */
214     public java.lang.String getSrc() {
215         return src;
216     }
217 
218     /***
219      * Sets the value of the src property.
220      * 
221      * @param value
222      *     allowed object is
223      *     {@link java.lang.String }
224      *     
225      */
226     public void setSrc(java.lang.String value) {
227         this.src = value;
228     }
229 
230     /***
231      * Gets the value of the systemId property.
232      * 
233      * @return
234      *     possible object is
235      *     {@link java.lang.String }
236      *     
237      */
238     public java.lang.String getSystemId() {
239         return systemId;
240     }
241 
242     /***
243      * Sets the value of the systemId property.
244      * 
245      * @param value
246      *     allowed object is
247      *     {@link java.lang.String }
248      *     
249      */
250     public void setSystemId(java.lang.String value) {
251         this.systemId = value;
252     }
253 
254 }