Produced by Araxis Merge on 1/17/2019 10:54:36 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 | PhoneNumTO.java | Wed Jan 16 16:06:32 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 | PhoneNumTO.java | Wed Jan 16 20:18:02 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 338 |
| 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.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 phoneNumT O complex 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="phone NumTO"> | |
| 16 | * <c omplexCont ent> | |
| 17 | * <extens ion base=" {http:// DNS . URL /}abstract TO"> | |
| 18 | * & lt;sequenc e> | |
| 19 | * <eleme nt name="t ype" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0" for m="unquali fied"/> | |
| 20 | * <eleme nt name="a reaCode" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" form="unq ualified"/ > | |
| 21 | * <eleme nt name="e xchange" t ype="{http ://www.w3. org/2001/X MLSchema}s tring" min Occurs="0" form="unq ualified"/ > | |
| 22 | * <eleme nt name="n umber" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0" f orm="unqua lified"/&g t; | |
| 23 | * <eleme nt name="d escription " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0" form=" unqualifie d"/> | |
| 24 | * & lt;/sequen ce> | |
| 25 | * < ;/extensio n> | |
| 26 | * </ complexCon tent> | |
| 27 | * </co mplexType& gt; | |
| 28 | * </pre> | |
| 29 | * | |
| 30 | * | |
| 31 | */ | |
| 32 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 33 | @XmlType(n ame = "pho neNumTO", propOrder = { | |
| 34 | "type" , | |
| 35 | "areaC ode", | |
| 36 | "excha nge", | |
| 37 | "numbe r", | |
| 38 | "descr iption" | |
| 39 | }) | |
| 40 | public cla ss PhoneNu mTO | |
| 41 | extend s Abstract TO | |
| 42 | { | |
| 43 | ||
| 44 | protec ted String type; | |
| 45 | protec ted String areaCode; | |
| 46 | protec ted String exchange; | |
| 47 | protec ted String number; | |
| 48 | protec ted String descripti on; | |
| 49 | ||
| 50 | /** | |
| 51 | * Get s the valu e of the t ype proper ty. | |
| 52 | * | |
| 53 | * @re turn | |
| 54 | * possible object is | |
| 55 | * {@link St ring } | |
| 56 | * | |
| 57 | */ | |
| 58 | public String ge tType() { | |
| 59 | re turn type; | |
| 60 | } | |
| 61 | ||
| 62 | /** | |
| 63 | * Set s the valu e of the t ype proper ty. | |
| 64 | * | |
| 65 | * @pa ram value | |
| 66 | * allowed o bject is | |
| 67 | * {@link St ring } | |
| 68 | * | |
| 69 | */ | |
| 70 | public void setT ype(String value) { | |
| 71 | th is.type = value; | |
| 72 | } | |
| 73 | ||
| 74 | /** | |
| 75 | * Get s the valu e of the a reaCode pr operty. | |
| 76 | * | |
| 77 | * @re turn | |
| 78 | * possible object is | |
| 79 | * {@link St ring } | |
| 80 | * | |
| 81 | */ | |
| 82 | public String ge tAreaCode( ) { | |
| 83 | re turn areaC ode; | |
| 84 | } | |
| 85 | ||
| 86 | /** | |
| 87 | * Set s the valu e of the a reaCode pr operty. | |
| 88 | * | |
| 89 | * @pa ram value | |
| 90 | * allowed o bject is | |
| 91 | * {@link St ring } | |
| 92 | * | |
| 93 | */ | |
| 94 | public void setA reaCode(St ring value ) { | |
| 95 | th is.areaCod e = value; | |
| 96 | } | |
| 97 | ||
| 98 | /** | |
| 99 | * Get s the valu e of the e xchange pr operty. | |
| 100 | * | |
| 101 | * @re turn | |
| 102 | * possible object is | |
| 103 | * {@link St ring } | |
| 104 | * | |
| 105 | */ | |
| 106 | public String ge tExchange( ) { | |
| 107 | re turn excha nge; | |
| 108 | } | |
| 109 | ||
| 110 | /** | |
| 111 | * Set s the valu e of the e xchange pr operty. | |
| 112 | * | |
| 113 | * @pa ram value | |
| 114 | * allowed o bject is | |
| 115 | * {@link St ring } | |
| 116 | * | |
| 117 | */ | |
| 118 | public void setE xchange(St ring value ) { | |
| 119 | th is.exchang e = value; | |
| 120 | } | |
| 121 | ||
| 122 | /** | |
| 123 | * Get s the valu e of the n umber prop erty. | |
| 124 | * | |
| 125 | * @re turn | |
| 126 | * possible object is | |
| 127 | * {@link St ring } | |
| 128 | * | |
| 129 | */ | |
| 130 | public String ge tNumber() { | |
| 131 | re turn numbe r; | |
| 132 | } | |
| 133 | ||
| 134 | /** | |
| 135 | * Set s the valu e of the n umber prop erty. | |
| 136 | * | |
| 137 | * @pa ram value | |
| 138 | * allowed o bject is | |
| 139 | * {@link St ring } | |
| 140 | * | |
| 141 | */ | |
| 142 | public void setN umber(Stri ng value) { | |
| 143 | th is.number = value; | |
| 144 | } | |
| 145 | ||
| 146 | /** | |
| 147 | * Get s the valu e of the d escription property. | |
| 148 | * | |
| 149 | * @re turn | |
| 150 | * possible object is | |
| 151 | * {@link St ring } | |
| 152 | * | |
| 153 | */ | |
| 154 | public String ge tDescripti on() { | |
| 155 | re turn descr iption; | |
| 156 | } | |
| 157 | ||
| 158 | /** | |
| 159 | * Set s the valu e of the d escription property. | |
| 160 | * | |
| 161 | * @pa ram value | |
| 162 | * allowed o bject is | |
| 163 | * {@link St ring } | |
| 164 | * | |
| 165 | */ | |
| 166 | public void setD escription (String va lue) { | |
| 167 | th is.descrip tion = val ue; | |
| 168 | } | |
| 169 | ||
| 170 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.