Produced by Araxis Merge on 5/10/2018 8:39:58 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\schedulingservice | TimeSlotTO.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\schedulingservice | TimeSlotTO.java | Thu May 3 12:58:21 2018 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 282 |
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.sch edulingser 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.XmlElem ent; | |
7 | import jav ax.xml.bin d.annotati on.XmlSche maType; | |
8 | import jav ax.xml.bin d.annotati on.XmlType ; | |
9 | import jav ax.xml.dat atype.XMLG regorianCa lendar; | |
10 | ||
11 | ||
12 | /** | |
13 | * <p>Java class for TimeSlotT O complex 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="TimeS lotTO"> | |
19 | * <c omplexCont ent> | |
20 | * <extens ion base=" {http:// DNS /Schedulin gSvc}Abstr actTO"> | |
21 | * & lt;sequenc e> | |
22 | * <eleme nt name="s tart" type ="{http:// www.w3.org /2001/XMLS chema}date Time"/> | |
23 | * <eleme nt name="e nd" type=" {http://ww w.w3.org/2 001/XMLSch ema}dateTi me"/> | |
24 | * <eleme nt name="t ext" type= "{http://w ww.w3.org/ 2001/XMLSc hema}strin g" minOccu rs="0"/> | |
25 | * <eleme nt name="a vailable" type="{htt p://www.w3 .org/2001/ XMLSchema} boolean"/> | |
26 | * & lt;/sequen ce> | |
27 | * < ;/extensio n> | |
28 | * </ complexCon tent> | |
29 | * </co mplexType> | |
30 | * </pre> | |
31 | * | |
32 | * | |
33 | */ | |
34 | @XmlAccess orType(Xml AccessType .FIELD) | |
35 | @XmlType(n ame = "Tim eSlotTO", propOrder = { | |
36 | "start ", | |
37 | "end", | |
38 | "text" , | |
39 | "avail able" | |
40 | }) | |
41 | public cla ss TimeSlo tTO | |
42 | extend s Abstract TO | |
43 | { | |
44 | ||
45 | @XmlEl ement(requ ired = tru e) | |
46 | @XmlSc hemaType(n ame = "dat eTime") | |
47 | protec ted XMLGre gorianCale ndar start ; | |
48 | @XmlEl ement(requ ired = tru e) | |
49 | @XmlSc hemaType(n ame = "dat eTime") | |
50 | protec ted XMLGre gorianCale ndar end; | |
51 | protec ted String text; | |
52 | protec ted boolea n availabl e; | |
53 | ||
54 | /** | |
55 | * Get s the valu e of the s tart prope rty. | |
56 | * | |
57 | * @re turn | |
58 | * possible object is | |
59 | * {@link XM LGregorian Calendar } | |
60 | * | |
61 | */ | |
62 | public XMLGregor ianCalenda r getStart () { | |
63 | re turn start ; | |
64 | } | |
65 | ||
66 | /** | |
67 | * Set s the valu e of the s tart prope rty. | |
68 | * | |
69 | * @pa ram value | |
70 | * allowed o bject is | |
71 | * {@link XM LGregorian Calendar } | |
72 | * | |
73 | */ | |
74 | public void setS tart(XMLGr egorianCal endar valu e) { | |
75 | th is.start = value; | |
76 | } | |
77 | ||
78 | /** | |
79 | * Get s the valu e of the e nd propert y. | |
80 | * | |
81 | * @re turn | |
82 | * possible object is | |
83 | * {@link XM LGregorian Calendar } | |
84 | * | |
85 | */ | |
86 | public XMLGregor ianCalenda r getEnd() { | |
87 | re turn end; | |
88 | } | |
89 | ||
90 | /** | |
91 | * Set s the valu e of the e nd propert y. | |
92 | * | |
93 | * @pa ram value | |
94 | * allowed o bject is | |
95 | * {@link XM LGregorian Calendar } | |
96 | * | |
97 | */ | |
98 | public void setE nd(XMLGreg orianCalen dar value) { | |
99 | th is.end = v alue; | |
100 | } | |
101 | ||
102 | /** | |
103 | * Get s the valu e of the t ext proper ty. | |
104 | * | |
105 | * @re turn | |
106 | * possible object is | |
107 | * {@link St ring } | |
108 | * | |
109 | */ | |
110 | public String ge tText() { | |
111 | re turn text; | |
112 | } | |
113 | ||
114 | /** | |
115 | * Set s the valu e of the t ext proper ty. | |
116 | * | |
117 | * @pa ram value | |
118 | * allowed o bject is | |
119 | * {@link St ring } | |
120 | * | |
121 | */ | |
122 | public void setT ext(String value) { | |
123 | th is.text = value; | |
124 | } | |
125 | ||
126 | /** | |
127 | * Get s the valu e of the a vailable p roperty. | |
128 | * | |
129 | */ | |
130 | public boolean i sAvailable () { | |
131 | re turn avail able; | |
132 | } | |
133 | ||
134 | /** | |
135 | * Set s the valu e of the a vailable p roperty. | |
136 | * | |
137 | */ | |
138 | public void setA vailable(b oolean val ue) { | |
139 | th is.availab le = value ; | |
140 | } | |
141 | ||
142 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.