Produced by Araxis Merge on 5/10/2018 8:39:51 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 | MHED_APPS_CIF.zip\SM v2.2.5\scheduling-manager-resources-2.2.5@e7f57981138.zip\SchedulingManagerMDWSLib\src\main\java\com\agilex\healthcare\schedulingmanager\mdws\generatedwsdl\emrservice | OrderDialogItemTO.java | Sat Apr 7 11:28:50 2018 UTC |
2 | MHED_APPS_CIF.zip\SM v2.2.5\scheduling-manager-resources-2.2.5@e7f57981138.zip\SchedulingManagerMDWSLib\src\main\java\com\agilex\healthcare\schedulingmanager\mdws\generatedwsdl\emrservice | OrderDialogItemTO.java | Thu May 3 12:55:21 2018 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 306 |
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 co m.agilex.h ealthcare. scheduling manager.md ws.generat edwsdl.emr 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 OrderDial ogItemTO c omplex typ e. | |
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="Order DialogItem TO"> | |
16 | * <c omplexCont ent> | |
17 | * <extens ion base=" {http:// DNS /EmrSvc}Ab stractTO"> | |
18 | * & lt;sequenc e> | |
19 | * <eleme nt name="s equenceNum ber" type= "{http://w ww.w3.org/ 2001/XMLSc hema}int"/ > | |
20 | * <eleme nt name="d ataType" t ype="{http ://microso ft.com/wsd l/types/}c har"/> | |
21 | * <eleme nt name="d omain" typ e="{http:/ /www.w3.or g/2001/XML Schema}str ing" minOc curs="0"/> | |
22 | * <eleme nt name="d isplayText " type="{h ttp://www. w3.org/200 1/XMLSchem a}string" minOccurs= "0"/> | |
23 | * <eleme nt name="o rderableIt emId" type ="{http:// www.w3.org /2001/XMLS chema}stri ng" minOcc urs="0"/> | |
24 | * & lt;/sequen ce> | |
25 | * < ;/extensio n> | |
26 | * </ complexCon tent> | |
27 | * </co mplexType> | |
28 | * </pre> | |
29 | * | |
30 | * | |
31 | */ | |
32 | @XmlAccess orType(Xml AccessType .FIELD) | |
33 | @XmlType(n ame = "Ord erDialogIt emTO", pro pOrder = { | |
34 | "seque nceNumber" , | |
35 | "dataT ype", | |
36 | "domai n", | |
37 | "displ ayText", | |
38 | "order ableItemId " | |
39 | }) | |
40 | public cla ss OrderDi alogItemTO | |
41 | extend s Abstract TO | |
42 | { | |
43 | ||
44 | protec ted int se quenceNumb er; | |
45 | protec ted int da taType; | |
46 | protec ted String domain; | |
47 | protec ted String displayTe xt; | |
48 | protec ted String orderable ItemId; | |
49 | ||
50 | /** | |
51 | * Get s the valu e of the s equenceNum ber proper ty. | |
52 | * | |
53 | */ | |
54 | public int getSe quenceNumb er() { | |
55 | re turn seque nceNumber; | |
56 | } | |
57 | ||
58 | /** | |
59 | * Set s the valu e of the s equenceNum ber proper ty. | |
60 | * | |
61 | */ | |
62 | public void setS equenceNum ber(int va lue) { | |
63 | th is.sequenc eNumber = value; | |
64 | } | |
65 | ||
66 | /** | |
67 | * Get s the valu e of the d ataType pr operty. | |
68 | * | |
69 | */ | |
70 | public int getDa taType() { | |
71 | re turn dataT ype; | |
72 | } | |
73 | ||
74 | /** | |
75 | * Set s the valu e of the d ataType pr operty. | |
76 | * | |
77 | */ | |
78 | public void setD ataType(in t value) { | |
79 | th is.dataTyp e = value; | |
80 | } | |
81 | ||
82 | /** | |
83 | * Get s the valu e of the d omain prop erty. | |
84 | * | |
85 | * @re turn | |
86 | * possible object is | |
87 | * {@link St ring } | |
88 | * | |
89 | */ | |
90 | public String ge tDomain() { | |
91 | re turn domai n; | |
92 | } | |
93 | ||
94 | /** | |
95 | * Set s the valu e of the d omain prop erty. | |
96 | * | |
97 | * @pa ram value | |
98 | * allowed o bject is | |
99 | * {@link St ring } | |
100 | * | |
101 | */ | |
102 | public void setD omain(Stri ng value) { | |
103 | th is.domain = value; | |
104 | } | |
105 | ||
106 | /** | |
107 | * Get s the valu e of the d isplayText property. | |
108 | * | |
109 | * @re turn | |
110 | * possible object is | |
111 | * {@link St ring } | |
112 | * | |
113 | */ | |
114 | public String ge tDisplayTe xt() { | |
115 | re turn displ ayText; | |
116 | } | |
117 | ||
118 | /** | |
119 | * Set s the valu e of the d isplayText property. | |
120 | * | |
121 | * @pa ram value | |
122 | * allowed o bject is | |
123 | * {@link St ring } | |
124 | * | |
125 | */ | |
126 | public void setD isplayText (String va lue) { | |
127 | th is.display Text = val ue; | |
128 | } | |
129 | ||
130 | /** | |
131 | * Get s the valu e of the o rderableIt emId prope rty. | |
132 | * | |
133 | * @re turn | |
134 | * possible object is | |
135 | * {@link St ring } | |
136 | * | |
137 | */ | |
138 | public String ge tOrderable ItemId() { | |
139 | re turn order ableItemId ; | |
140 | } | |
141 | ||
142 | /** | |
143 | * Set s the valu e of the o rderableIt emId prope rty. | |
144 | * | |
145 | * @pa ram value | |
146 | * allowed o bject is | |
147 | * {@link St ring } | |
148 | * | |
149 | */ | |
150 | public void setO rderableIt emId(Strin g value) { | |
151 | th is.orderab leItemId = value; | |
152 | } | |
153 | ||
154 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.