Produced by Araxis Merge on 10/3/2017 11:15:33 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 | AdmissionDetail.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 | AdmissionDetail.java | Mon Oct 2 19:52:21 2017 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 4 | 254 |
| Changed | 3 | 8 |
| 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 a.util.Arr ayList; | |
| 5 | import jav a.util.Lis t; | |
| 6 | import jav ax.xml.bin d.annotati on.XmlAcce ssType; | |
| 7 | import jav ax.xml.bin d.annotati on.XmlAcce ssorType; | |
| 8 | import jav ax.xml.bin d.annotati on.XmlElem ent; | |
| 9 | import jav ax.xml.bin d.annotati on.XmlType ; | |
| 10 | ||
| 11 | ||
| 12 | /** | |
| 13 | * <p>Java class for admission Detail com plex type. | |
| 14 | * | |
| 15 | * <p>The following schema fra gment spec ifies the expected c ontent con tained wit hin this c lass. | |
| 16 | * | |
| 17 | * <pre> | |
| 18 | * <com plexType n ame="admis sionDetail "> | |
| 19 | * <c omplexCont ent> | |
| 20 | * <extens ion base=" {http://we bservice.v ds. URL /}patientA dmission"> | |
| 21 | * & lt;sequenc e> | |
| 22 | * <eleme nt name="d etailText" type="{ht tp://www.w 3.org/2001 /XMLSchema }string" m inOccurs=" 0"/> | |
| 23 | * <elemen t name="di agnoses" t ype="{http ://webserv ice.vds. URL /}diagnosi s" maxOccu rs="unboun ded" minOc curs="0"/> | |
| 24 | * <elemen t name="pr ocedures" type="{htt p://webser vice.vds. URL /}procedur e" maxOccu rs="unboun ded" minOc curs="0"/> | |
| 25 | * & lt;/sequen ce> | |
| 26 | * < ;/extensio n> | |
| 27 | * </ complexCon tent> | |
| 28 | * </co mplexType> | |
| 29 | * </pre> | |
| 30 | * | |
| 31 | * | |
| 32 | */ | |
| 33 | @XmlAccess orType(Xml AccessType .FIELD) | |
| 34 | @XmlType(n ame = "adm issionDeta il", names pace = "ht tp://webse rvice.vds. URL /", propOr der = { | |
| 35 | "detai lText", | |
| 36 | "diagn oses", | |
| 37 | "proce dures" | |
| 38 | }) | |
| 39 | public cla ss Admissi onDetail | |
| 40 | extend s PatientA dmission | |
| 41 | { | |
| 42 | ||
| 43 | protec ted String detailTex t; | |
| 44 | @XmlEl ement(nill able = tru e) | |
| 45 | protec ted List<D iagnosis> diagnoses; | |
| 46 | @XmlEl ement(nill able = tru e) | |
| 47 | protec ted List<P rocedure> procedures ; | |
| 48 | ||
| 49 | /** | |
| 50 | * Get s the valu e of the d etailText property. | |
| 51 | * | |
| 52 | * @re turn | |
| 53 | * possible object is | |
| 54 | * {@link St ring } | |
| 55 | * | |
| 56 | */ | |
| 57 | public String ge tDetailTex t() { | |
| 58 | re turn detai lText; | |
| 59 | } | |
| 60 | ||
| 61 | /** | |
| 62 | * Set s the valu e of the d etailText property. | |
| 63 | * | |
| 64 | * @pa ram value | |
| 65 | * allowed o bject is | |
| 66 | * {@link St ring } | |
| 67 | * | |
| 68 | */ | |
| 69 | public void setD etailText( String val ue) { | |
| 70 | th is.detailT ext = valu e; | |
| 71 | } | |
| 72 | ||
| 73 | /** | |
| 74 | * Get s the valu e of the d iagnoses p roperty. | |
| 75 | * | |
| 76 | * <p> | |
| 77 | * Thi s accessor method re turns a re ference to the live list, | |
| 78 | * not a snapsho t. Therefo re any mod ification you make t o the | |
| 79 | * ret urned list will be p resent ins ide the JA XB object. | |
| 80 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the diag noses prop erty. | |
| 81 | * | |
| 82 | * <p> | |
| 83 | * For example, to add a n ew item, d o as follo ws: | |
| 84 | * <pr e> | |
| 85 | * getDiagnos es().add(n ewItem); | |
| 86 | * </p re> | |
| 87 | * | |
| 88 | * | |
| 89 | * <p> | |
| 90 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |
| 91 | * {@l ink Diagno sis } | |
| 92 | * | |
| 93 | * | |
| 94 | */ | |
| 95 | public List<Diag nosis> get Diagnoses( ) { | |
| 96 | if (diagnose s == null) { | |
| 97 | diagnose s = new Ar rayList<Di agnosis>() ; | |
| 98 | } | |
| 99 | re turn this. diagnoses; | |
| 100 | } | |
| 101 | ||
| 102 | /** | |
| 103 | * Get s the valu e of the p rocedures property. | |
| 104 | * | |
| 105 | * <p> | |
| 106 | * Thi s accessor method re turns a re ference to the live list, | |
| 107 | * not a snapsho t. Therefo re any mod ification you make t o the | |
| 108 | * ret urned list will be p resent ins ide the JA XB object. | |
| 109 | * Thi s is why t here is no t a <CODE> set</CODE> method fo r the proc edures pro perty. | |
| 110 | * | |
| 111 | * <p> | |
| 112 | * For example, to add a n ew item, d o as follo ws: | |
| 113 | * <pr e> | |
| 114 | * getProcedu res().add( newItem); | |
| 115 | * </p re> | |
| 116 | * | |
| 117 | * | |
| 118 | * <p> | |
| 119 | * Obj ects of th e followin g type(s) are allowe d in the l ist | |
| 120 | * {@l ink Proced ure } | |
| 121 | * | |
| 122 | * | |
| 123 | */ | |
| 124 | public List<Proc edure> get Procedures () { | |
| 125 | if (procedur es == null ) { | |
| 126 | procedur es = new A rrayList<P rocedure>( ); | |
| 127 | } | |
| 128 | re turn this. procedures ; | |
| 129 | } | |
| 130 | ||
| 131 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.