Produced by Araxis Merge on 11/28/2017 4:44:48 PM Eastern 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 | admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-main\src\main\java\gov\va\med\mhv\admin\registry | Alias.java | Wed Aug 23 04:11:24 2017 UTC |
2 | admin_portal_reeng_2018.1.0.0.zip\admin portal reeng\mhv_source\mhv_admin\mhv-admin-main\src\main\java\gov\va\med\mhv\admin\registry | Alias.java | Tue Nov 28 20:41:50 2017 UTC |
Description | Between Files 1 and 2 |
|
---|---|---|
Text Blocks | Lines | |
Unchanged | 2 | 128 |
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 | * | |
3 | */ | |
4 | package go v.va.med.m hv.admin.r egistry; | |
5 | ||
6 | ||
7 | /** | |
8 | * @author
|
|
9 | * | |
10 | */ | |
11 | public cla ss Alias e xtends Mod elObject { | |
12 | ||
13 | privat e Name nam e = null; | |
14 | privat e String s sn = null; | |
15 | ||
16 | /** | |
17 | * @re turn Retur ns the nam e. | |
18 | */ | |
19 | public Name getN ame() { | |
20 | re turn name; | |
21 | } | |
22 | ||
23 | /** | |
24 | * @pa ram name T he name to set. | |
25 | */ | |
26 | public void setN ame(Name n ame) { | |
27 | th is.name = name; | |
28 | } | |
29 | ||
30 | /** | |
31 | * @re turn Retur ns the ssn . | |
32 | */ | |
33 | public String ge tSsn() { | |
34 | re turn ssn; | |
35 | } | |
36 | ||
37 | /** | |
38 | * @pa ram ssn Th e ssn to s et. | |
39 | */ | |
40 | public void setS sn(String ssn) { | |
41 | th is.ssn = s sn; | |
42 | } | |
43 | ||
44 | @Overr ide | |
45 | public int hashC ode() { | |
46 | Ob ject[] fie lds = { na me, ssn }; | |
47 | re turn hashC ode(fields ); | |
48 | } | |
49 | ||
50 | @Overr ide | |
51 | public boolean e quals(Obje ct obj) { | |
52 | if (this == obj) { | |
53 | return t rue; | |
54 | } | |
55 | if (obj == n ull) { | |
56 | return f alse; | |
57 | } | |
58 | if (getClass () != obj. getClass() ) { | |
59 | return f alse; | |
60 | } | |
61 | fi nal Alias other = (A lias) obj; | |
62 | re turn areEq ual(name, other.name ) | |
63 | && areEq ual(ssn, o ther.ssn); | |
64 | } | |
65 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.