1
2
3
4
5
6
7
8
9 package org.jomc.model.test;
10
11 import javax.annotation.Generated;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlType;
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "ModelValidationReportDetail", namespace = "http://jomc.org/model/test")
38 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
39 public class ModelValidationReportDetail implements Cloneable
40 {
41
42 @XmlAttribute(name = "identifier", required = true)
43 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
44 protected String identifier;
45 @XmlAttribute(name = "count", required = true)
46 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
47 protected int count;
48
49
50
51
52
53 public ModelValidationReportDetail() {
54
55 super();
56 }
57
58
59
60
61
62
63
64
65
66
67 public ModelValidationReportDetail(final ModelValidationReportDetail o) {
68
69 super();
70 if (o == null) {
71 throw new NullPointerException("Cannot create a copy of 'ModelValidationReportDetail' from 'null'.");
72 }
73
74 this.identifier = ((o.identifier == null)?null:o.getIdentifier());
75
76 this.count = o.getCount();
77 }
78
79
80
81
82
83
84
85
86
87 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
88 public String getIdentifier() {
89 return identifier;
90 }
91
92
93
94
95
96
97
98
99
100 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
101 public void setIdentifier(String value) {
102 this.identifier = value;
103 }
104
105
106
107
108
109 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
110 public int getCount() {
111 return count;
112 }
113
114
115
116
117
118 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
119 public void setCount(int value) {
120 this.count = value;
121 }
122
123
124
125
126
127
128
129
130 @Override
131 @Generated(value = "com.sun.tools.xjc.Driver", date = "2013-04-21T08:43:19+02:00", comments = "JAXB RI vhudson-jaxb-ri-2.1-2")
132 public ModelValidationReportDetail clone() {
133 try {
134 {
135
136 final ModelValidationReportDetail clone = ((ModelValidationReportDetail) super.clone());
137
138 clone.identifier = ((this.identifier == null)?null:this.getIdentifier());
139
140 clone.count = this.getCount();
141 return clone;
142 }
143 } catch (CloneNotSupportedException e) {
144
145 throw new AssertionError(e);
146 }
147 }
148
149 }