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_3_0_2\webservice | Comment.java | Thu Apr 28 21:02:40 2016 UTC |
| 2 | ehmp.zip\ehmp\ehmp\product\production\soap-handler\src\main\java\gov\va\med\jmeadows_2_3_3_0_2\webservice | Comment.java | Mon Oct 2 19:54:14 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 286 |
| 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_3_0_2.we bservice; | |
| 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.XmlSche maType; | |
| 7 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 8 | import jav ax.xml.dat atype.XMLG regorianCa lendar; | |
| 9 | ||
| 10 | ||
| 11 | /** | |
| 12 | * <p>Java class for comment c omplex typ e. | |
| 13 | * | |
| 14 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 15 | * | |
| 16 | * <pre> | |
| 17 | * <com plexType n ame="comme nt"> | |
| 18 | * <c omplexCont ent> | |
| 19 | * < ;restricti on base="{ http://www .w3.org/20 01/XMLSche ma}anyType "> | |
| 20 | * & lt;sequenc e> | |
| 21 | * <eleme nt name="c ommentText " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
| 22 | * <eleme nt name="c ommentType " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
| 23 | * <eleme nt name="e nteredBy" type="{htt p://www.w3 .org/2001/ XMLSchema} string" mi nOccurs="0 "/> | |
| 24 | * <eleme nt name="e nteredDate " type="{h ttp://www. w3.org/200 1/XMLSchem a}dateTime " minOccur s="0"/> | |
| 25 | * & lt;/sequen ce> | |
| 26 | * < ;/restrict ion> | |
| 27 | * </ complexCon tent> | |
| 28 | * </co mplexType> | |
| 29 | * </pre> | |
| 30 | * | |
| 31 | * | |
| 32 | */ | |
| 33 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 34 | @XmlType(n ame = "com ment", nam espace = " http://web service.vd s. URL /", propOr der = { | |
| 35 | "comme ntText", | |
| 36 | "comme ntType", | |
| 37 | "enter edBy", | |
| 38 | "enter edDate" | |
| 39 | }) | |
| 40 | public cla ss Comment { | |
| 41 | ||
| 42 | protec ted String commentTe xt; | |
| 43 | protec ted String commentTy pe; | |
| 44 | protec ted String enteredBy ; | |
| 45 | @XmlSc hemaType(n ame = "dat eTime") | |
| 46 | protec ted XMLGre gorianCale ndar enter edDate; | |
| 47 | ||
| 48 | /** | |
| 49 | * Get s the valu e of the c ommentText property. | |
| 50 | * | |
| 51 | * @re turn | |
| 52 | * possible object is | |
| 53 | * {@link St ring } | |
| 54 | * | |
| 55 | */ | |
| 56 | public String ge tCommentTe xt() { | |
| 57 | re turn comme ntText; | |
| 58 | } | |
| 59 | ||
| 60 | /** | |
| 61 | * Set s the valu e of the c ommentText property. | |
| 62 | * | |
| 63 | * @pa ram value | |
| 64 | * allowed o bject is | |
| 65 | * {@link St ring } | |
| 66 | * | |
| 67 | */ | |
| 68 | public void setC ommentText (String va lue) { | |
| 69 | th is.comment Text = val ue; | |
| 70 | } | |
| 71 | ||
| 72 | /** | |
| 73 | * Get s the valu e of the c ommentType property. | |
| 74 | * | |
| 75 | * @re turn | |
| 76 | * possible object is | |
| 77 | * {@link St ring } | |
| 78 | * | |
| 79 | */ | |
| 80 | public String ge tCommentTy pe() { | |
| 81 | re turn comme ntType; | |
| 82 | } | |
| 83 | ||
| 84 | /** | |
| 85 | * Set s the valu e of the c ommentType property. | |
| 86 | * | |
| 87 | * @pa ram value | |
| 88 | * allowed o bject is | |
| 89 | * {@link St ring } | |
| 90 | * | |
| 91 | */ | |
| 92 | public void setC ommentType (String va lue) { | |
| 93 | th is.comment Type = val ue; | |
| 94 | } | |
| 95 | ||
| 96 | /** | |
| 97 | * Get s the valu e of the e nteredBy p roperty. | |
| 98 | * | |
| 99 | * @re turn | |
| 100 | * possible object is | |
| 101 | * {@link St ring } | |
| 102 | * | |
| 103 | */ | |
| 104 | public String ge tEnteredBy () { | |
| 105 | re turn enter edBy; | |
| 106 | } | |
| 107 | ||
| 108 | /** | |
| 109 | * Set s the valu e of the e nteredBy p roperty. | |
| 110 | * | |
| 111 | * @pa ram value | |
| 112 | * allowed o bject is | |
| 113 | * {@link St ring } | |
| 114 | * | |
| 115 | */ | |
| 116 | public void setE nteredBy(S tring valu e) { | |
| 117 | th is.entered By = value ; | |
| 118 | } | |
| 119 | ||
| 120 | /** | |
| 121 | * Get s the valu e of the e nteredDate property. | |
| 122 | * | |
| 123 | * @re turn | |
| 124 | * possible object is | |
| 125 | * {@link XM LGregorian Calendar } | |
| 126 | * | |
| 127 | */ | |
| 128 | public XMLGregor ianCalenda r getEnter edDate() { | |
| 129 | re turn enter edDate; | |
| 130 | } | |
| 131 | ||
| 132 | /** | |
| 133 | * Set s the valu e of the e nteredDate property. | |
| 134 | * | |
| 135 | * @pa ram value | |
| 136 | * allowed o bject is | |
| 137 | * {@link XM LGregorian Calendar } | |
| 138 | * | |
| 139 | */ | |
| 140 | public void setE nteredDate (XMLGregor ianCalenda r value) { | |
| 141 | th is.entered Date = val ue; | |
| 142 | } | |
| 143 | ||
| 144 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.