Produced by Araxis Merge on 10/3/2017 11:15:38 AM Central Daylight 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 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_1\webservice | VitalModifier.java | Tue Dec 15 14:05:18 2015 UTC |
| 2 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_1\webservice | VitalModifier.java | Mon Oct 2 19:54:06 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 226 |
| Changed | 1 | 2 |
| 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.j meadows_2_ 3_1.webser vice; | |
| 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 vitalModi fier compl ex type. | |
| 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="vital Modifier"> | |
| 16 | * <c omplexCont ent> | |
| 17 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 18 | * & lt;sequenc e> | |
| 19 | * <eleme nt name="t ype" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
| 20 | * <eleme nt name="u nits" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/> | |
| 21 | * <eleme nt name="v alue" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/> | |
| 22 | * & lt;/sequen ce> | |
| 23 | * < ;/restrict ion> | |
| 24 | * </ complexCon tent> | |
| 25 | * </co mplexType> | |
| 26 | * </pre> | |
| 27 | * | |
| 28 | * | |
| 29 | */ | |
| 30 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 31 | @XmlType(n ame = "vit alModifier ", namespa ce = "http ://webserv ice.vds. URL /", propOr der = { | |
| 32 | "type" , | |
| 33 | "units ", | |
| 34 | "value " | |
| 35 | }) | |
| 36 | public cla ss VitalMo difier { | |
| 37 | ||
| 38 | protec ted String type; | |
| 39 | protec ted String units; | |
| 40 | protec ted String value; | |
| 41 | ||
| 42 | /** | |
| 43 | * Get s the valu e of the t ype proper ty. | |
| 44 | * | |
| 45 | * @re turn | |
| 46 | * possible object is | |
| 47 | * {@link St ring } | |
| 48 | * | |
| 49 | */ | |
| 50 | public String ge tType() { | |
| 51 | re turn type; | |
| 52 | } | |
| 53 | ||
| 54 | /** | |
| 55 | * Set s the valu e of the t ype proper ty. | |
| 56 | * | |
| 57 | * @pa ram value | |
| 58 | * allowed o bject is | |
| 59 | * {@link St ring } | |
| 60 | * | |
| 61 | */ | |
| 62 | public void setT ype(String value) { | |
| 63 | th is.type = value; | |
| 64 | } | |
| 65 | ||
| 66 | /** | |
| 67 | * Get s the valu e of the u nits prope rty. | |
| 68 | * | |
| 69 | * @re turn | |
| 70 | * possible object is | |
| 71 | * {@link St ring } | |
| 72 | * | |
| 73 | */ | |
| 74 | public String ge tUnits() { | |
| 75 | re turn units ; | |
| 76 | } | |
| 77 | ||
| 78 | /** | |
| 79 | * Set s the valu e of the u nits prope rty. | |
| 80 | * | |
| 81 | * @pa ram value | |
| 82 | * allowed o bject is | |
| 83 | * {@link St ring } | |
| 84 | * | |
| 85 | */ | |
| 86 | public void setU nits(Strin g value) { | |
| 87 | th is.units = value; | |
| 88 | } | |
| 89 | ||
| 90 | /** | |
| 91 | * Get s the valu e of the v alue prope rty. | |
| 92 | * | |
| 93 | * @re turn | |
| 94 | * possible object is | |
| 95 | * {@link St ring } | |
| 96 | * | |
| 97 | */ | |
| 98 | public String ge tValue() { | |
| 99 | re turn value ; | |
| 100 | } | |
| 101 | ||
| 102 | /** | |
| 103 | * Set s the valu e of the v alue prope rty. | |
| 104 | * | |
| 105 | * @pa ram value | |
| 106 | * allowed o bject is | |
| 107 | * {@link St ring } | |
| 108 | * | |
| 109 | */ | |
| 110 | public void setV alue(Strin g value) { | |
| 111 | th is.value = value; | |
| 112 | } | |
| 113 | ||
| 114 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.