Produced by Araxis Merge on 1/17/2019 10:54:33 AM Central Standard Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.
| # | Location | File | Last Modified |
|---|---|---|---|
| 1 | v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service | LabTestTO.java | Wed Jan 16 16:06:42 2019 UTC |
| 2 | v1_iter_1_VIP_Build_4_Dec_2018_CG.zip\v1_iter_1_VIP_Build_4\portlets\caret-portlet\docroot\WEB-INF\src\gov\va\med\via\service | LabTestTO.java | Wed Jan 16 20:17:39 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 3 | 604 |
| Changed | 2 | 6 |
| Inserted | 0 | 0 |
| Removed | 0 | 0 |
| Whitespace | |
|---|---|
| Character case | Differences in character case are significant |
| Line endings | Differences in line endings (CR and LF characters) are ignored |
| CR/LF characters | Not shown in the comparison detail |
No regular expressions were active.
| 1 | ||
| 2 | package go v.va.med.v ia.service ; | |
| 3 | ||
| 4 | import jav ax.xml.bin d.annotati on.XmlAcce ssType; | |
| 5 | import jav ax.xml.bin d.annotati on.XmlAcce ssorType; | |
| 6 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 7 | ||
| 8 | ||
| 9 | /** | |
| 10 | * <p>Java class for labTestTO complex t ype. | |
| 11 | * | |
| 12 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 13 | * | |
| 14 | * <pre> | |
| 15 | * <com plexType n ame="labTe stTO"> | |
| 16 | * <c omplexCont ent> | |
| 17 | * <extens ion base=" {http:// DNS . URL /}abstract TO"> | |
| 18 | * & lt;sequenc e> | |
| 19 | * <elemen t name="re sult" type ="{http:// DNS . URL /}labResul tTO" minOc curs="0" f orm="unqua lified"/&g t; | |
| 20 | * <elemen t name="sp ecimen" ty pe="{http: // DNS . URL /}labSpeci menTO" min Occurs="0" form="unq ualified"/ > | |
| 21 | * <eleme nt name="i d" type="{ http://www .w3.org/20 01/XMLSche ma}string" minOccurs ="0" form= "unqualifi ed"/> | |
| 22 | * <eleme nt name="n ame" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/> | |
| 23 | * <eleme nt name="c ategory" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" form="unq ualified"/ > | |
| 24 | * <eleme nt name="u nits" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0" fo rm="unqual ified"/> ; | |
| 25 | * <eleme nt name="l owRef" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0" f orm="unqua lified"/&g t; | |
| 26 | * <eleme nt name="h iRef" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0" fo rm="unqual ified"/> ; | |
| 27 | * <eleme nt name="r efRange" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" form="unq ualified"/ > | |
| 28 | * <eleme nt name="l oinc" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0" fo rm="unqual ified"/> ; | |
| 29 | * & lt;/sequen ce> | |
| 30 | * < ;/extensio n> | |
| 31 | * </ complexCon tent> | |
| 32 | * </co mplexType& gt; | |
| 33 | * </pre> | |
| 34 | * | |
| 35 | * | |
| 36 | */ | |
| 37 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 38 | @XmlType(n ame = "lab TestTO", p ropOrder = { | |
| 39 | "resul t", | |
| 40 | "speci men", | |
| 41 | "id", | |
| 42 | "name" , | |
| 43 | "categ ory", | |
| 44 | "units ", | |
| 45 | "lowRe f", | |
| 46 | "hiRef ", | |
| 47 | "refRa nge", | |
| 48 | "loinc " | |
| 49 | }) | |
| 50 | public cla ss LabTest TO | |
| 51 | extend s Abstract TO | |
| 52 | { | |
| 53 | ||
| 54 | protec ted LabRes ultTO resu lt; | |
| 55 | protec ted LabSpe cimenTO sp ecimen; | |
| 56 | protec ted String id; | |
| 57 | protec ted String name; | |
| 58 | protec ted String category; | |
| 59 | protec ted String units; | |
| 60 | protec ted String lowRef; | |
| 61 | protec ted String hiRef; | |
| 62 | protec ted String refRange; | |
| 63 | protec ted String loinc; | |
| 64 | ||
| 65 | /** | |
| 66 | * Get s the valu e of the r esult prop erty. | |
| 67 | * | |
| 68 | * @re turn | |
| 69 | * possible object is | |
| 70 | * {@link La bResultTO } | |
| 71 | * | |
| 72 | */ | |
| 73 | public LabResult TO getResu lt() { | |
| 74 | re turn resul t; | |
| 75 | } | |
| 76 | ||
| 77 | /** | |
| 78 | * Set s the valu e of the r esult prop erty. | |
| 79 | * | |
| 80 | * @pa ram value | |
| 81 | * allowed o bject is | |
| 82 | * {@link La bResultTO } | |
| 83 | * | |
| 84 | */ | |
| 85 | public void setR esult(LabR esultTO va lue) { | |
| 86 | th is.result = value; | |
| 87 | } | |
| 88 | ||
| 89 | /** | |
| 90 | * Get s the valu e of the s pecimen pr operty. | |
| 91 | * | |
| 92 | * @re turn | |
| 93 | * possible object is | |
| 94 | * {@link La bSpecimenT O } | |
| 95 | * | |
| 96 | */ | |
| 97 | public LabSpecim enTO getSp ecimen() { | |
| 98 | re turn speci men; | |
| 99 | } | |
| 100 | ||
| 101 | /** | |
| 102 | * Set s the valu e of the s pecimen pr operty. | |
| 103 | * | |
| 104 | * @pa ram value | |
| 105 | * allowed o bject is | |
| 106 | * {@link La bSpecimenT O } | |
| 107 | * | |
| 108 | */ | |
| 109 | public void setS pecimen(La bSpecimenT O value) { | |
| 110 | th is.specime n = value; | |
| 111 | } | |
| 112 | ||
| 113 | /** | |
| 114 | * Get s the valu e of the i d property . | |
| 115 | * | |
| 116 | * @re turn | |
| 117 | * possible object is | |
| 118 | * {@link St ring } | |
| 119 | * | |
| 120 | */ | |
| 121 | public String ge tId() { | |
| 122 | re turn id; | |
| 123 | } | |
| 124 | ||
| 125 | /** | |
| 126 | * Set s the valu e of the i d property . | |
| 127 | * | |
| 128 | * @pa ram value | |
| 129 | * allowed o bject is | |
| 130 | * {@link St ring } | |
| 131 | * | |
| 132 | */ | |
| 133 | public void setI d(String v alue) { | |
| 134 | th is.id = va lue; | |
| 135 | } | |
| 136 | ||
| 137 | /** | |
| 138 | * Get s the valu e of the n ame proper ty. | |
| 139 | * | |
| 140 | * @re turn | |
| 141 | * possible object is | |
| 142 | * {@link St ring } | |
| 143 | * | |
| 144 | */ | |
| 145 | public String ge tName() { | |
| 146 | re turn name; | |
| 147 | } | |
| 148 | ||
| 149 | /** | |
| 150 | * Set s the valu e of the n ame proper ty. | |
| 151 | * | |
| 152 | * @pa ram value | |
| 153 | * allowed o bject is | |
| 154 | * {@link St ring } | |
| 155 | * | |
| 156 | */ | |
| 157 | public void setN ame(String value) { | |
| 158 | th is.name = value; | |
| 159 | } | |
| 160 | ||
| 161 | /** | |
| 162 | * Get s the valu e of the c ategory pr operty. | |
| 163 | * | |
| 164 | * @re turn | |
| 165 | * possible object is | |
| 166 | * {@link St ring } | |
| 167 | * | |
| 168 | */ | |
| 169 | public String ge tCategory( ) { | |
| 170 | re turn categ ory; | |
| 171 | } | |
| 172 | ||
| 173 | /** | |
| 174 | * Set s the valu e of the c ategory pr operty. | |
| 175 | * | |
| 176 | * @pa ram value | |
| 177 | * allowed o bject is | |
| 178 | * {@link St ring } | |
| 179 | * | |
| 180 | */ | |
| 181 | public void setC ategory(St ring value ) { | |
| 182 | th is.categor y = value; | |
| 183 | } | |
| 184 | ||
| 185 | /** | |
| 186 | * Get s the valu e of the u nits prope rty. | |
| 187 | * | |
| 188 | * @re turn | |
| 189 | * possible object is | |
| 190 | * {@link St ring } | |
| 191 | * | |
| 192 | */ | |
| 193 | public String ge tUnits() { | |
| 194 | re turn units ; | |
| 195 | } | |
| 196 | ||
| 197 | /** | |
| 198 | * Set s the valu e of the u nits prope rty. | |
| 199 | * | |
| 200 | * @pa ram value | |
| 201 | * allowed o bject is | |
| 202 | * {@link St ring } | |
| 203 | * | |
| 204 | */ | |
| 205 | public void setU nits(Strin g value) { | |
| 206 | th is.units = value; | |
| 207 | } | |
| 208 | ||
| 209 | /** | |
| 210 | * Get s the valu e of the l owRef prop erty. | |
| 211 | * | |
| 212 | * @re turn | |
| 213 | * possible object is | |
| 214 | * {@link St ring } | |
| 215 | * | |
| 216 | */ | |
| 217 | public String ge tLowRef() { | |
| 218 | re turn lowRe f; | |
| 219 | } | |
| 220 | ||
| 221 | /** | |
| 222 | * Set s the valu e of the l owRef prop erty. | |
| 223 | * | |
| 224 | * @pa ram value | |
| 225 | * allowed o bject is | |
| 226 | * {@link St ring } | |
| 227 | * | |
| 228 | */ | |
| 229 | public void setL owRef(Stri ng value) { | |
| 230 | th is.lowRef = value; | |
| 231 | } | |
| 232 | ||
| 233 | /** | |
| 234 | * Get s the valu e of the h iRef prope rty. | |
| 235 | * | |
| 236 | * @re turn | |
| 237 | * possible object is | |
| 238 | * {@link St ring } | |
| 239 | * | |
| 240 | */ | |
| 241 | public String ge tHiRef() { | |
| 242 | re turn hiRef ; | |
| 243 | } | |
| 244 | ||
| 245 | /** | |
| 246 | * Set s the valu e of the h iRef prope rty. | |
| 247 | * | |
| 248 | * @pa ram value | |
| 249 | * allowed o bject is | |
| 250 | * {@link St ring } | |
| 251 | * | |
| 252 | */ | |
| 253 | public void setH iRef(Strin g value) { | |
| 254 | th is.hiRef = value; | |
| 255 | } | |
| 256 | ||
| 257 | /** | |
| 258 | * Get s the valu e of the r efRange pr operty. | |
| 259 | * | |
| 260 | * @re turn | |
| 261 | * possible object is | |
| 262 | * {@link St ring } | |
| 263 | * | |
| 264 | */ | |
| 265 | public String ge tRefRange( ) { | |
| 266 | re turn refRa nge; | |
| 267 | } | |
| 268 | ||
| 269 | /** | |
| 270 | * Set s the valu e of the r efRange pr operty. | |
| 271 | * | |
| 272 | * @pa ram value | |
| 273 | * allowed o bject is | |
| 274 | * {@link St ring } | |
| 275 | * | |
| 276 | */ | |
| 277 | public void setR efRange(St ring value ) { | |
| 278 | th is.refRang e = value; | |
| 279 | } | |
| 280 | ||
| 281 | /** | |
| 282 | * Get s the valu e of the l oinc prope rty. | |
| 283 | * | |
| 284 | * @re turn | |
| 285 | * possible object is | |
| 286 | * {@link St ring } | |
| 287 | * | |
| 288 | */ | |
| 289 | public String ge tLoinc() { | |
| 290 | re turn loinc ; | |
| 291 | } | |
| 292 | ||
| 293 | /** | |
| 294 | * Set s the valu e of the l oinc prope rty. | |
| 295 | * | |
| 296 | * @pa ram value | |
| 297 | * allowed o bject is | |
| 298 | * {@link St ring } | |
| 299 | * | |
| 300 | */ | |
| 301 | public void setL oinc(Strin g value) { | |
| 302 | th is.loinc = value; | |
| 303 | } | |
| 304 | ||
| 305 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.