Produced by Araxis Merge on 6/11/2019 10:54:13 AM Eastern 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 | HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\model\lookup | AbstractNamedLookup.java | Wed May 29 15:26:04 2019 UTC |
| 2 | HTRE_P3_v14.5_iter_4_build_14.zip\java\gov\va\med\fw\model\lookup | AbstractNamedLookup.java | Mon Jun 10 19:27:47 2019 UTC |
| Description | Between Files 1 and 2 |
|
|---|---|---|
| Text Blocks | Lines | |
| Unchanged | 2 | 166 |
| 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 | package go v.va.med.f w.model.lo okup; | |
| 2 | ||
| 3 | // Java Cl asses | |
| 4 | ||
| 5 | // Library Classes | |
| 6 | import org .apache.co mmons.lang .builder.T oStringBui lder; | |
| 7 | ||
| 8 | // Framewo rk Classes | |
| 9 | ||
| 10 | /** | |
| 11 | * An abst ract class that is u sed as a b ase class for all lo okup entit ies with a | |
| 12 | * unique name | |
| 13 | * | |
| 14 | * Project : Framewor k</br> Cre ated on: 1 2:51:08 PM </br> | |
| 15 | * | |
| 16 | * @author DN S
|
|
| 17 | */ | |
| 18 | public abs tract clas s Abstract NamedLooku p extends AbstractLo okup imple ments Name dLookup { | |
| 19 | pr ivate stat ic final l ong serial VersionUID = 4545725 9281798235 94L; | |
| 20 | ||
| 21 | /* * | |
| 22 | * The uniqu e business name for this objec t. | |
| 23 | * | |
| 24 | * @hibernat e.property not-null= "true" ins ert="false " update=" false" | |
| 25 | * column="N AME" lengt h="80" uni que="true" | |
| 26 | * / | |
| 27 | pr ivate Stri ng name; | |
| 28 | ||
| 29 | /* * | |
| 30 | * Default c onstructor . | |
| 31 | * / | |
| 32 | pu blic Abstr actNamedLo okup() { | |
| 33 | supe r(); | |
| 34 | } | |
| 35 | ||
| 36 | /* * | |
| 37 | * Returns t he unique business n ame for th is object. | |
| 38 | * | |
| 39 | * @return T he unique business n ame for th is object. | |
| 40 | * / | |
| 41 | pu blic Strin g getName( ) { | |
| 42 | retu rn this.na me; | |
| 43 | } | |
| 44 | ||
| 45 | /* * | |
| 46 | * @see gov. va.med.fw. model.look up.Lookup# getDescrip tion() | |
| 47 | * / | |
| 48 | // public St ring getDe scription( ) { | |
| 49 | // // If a d escription doesn't e xist, just return th e name if one is pre sent | |
| 50 | // if ((supe r.getDescr iption() = = null) && getName() != null) { | |
| 51 | // return ge tName(); | |
| 52 | // } | |
| 53 | // else { | |
| 54 | // return su per.getDes cription() ; | |
| 55 | // } | |
| 56 | // } | |
| 57 | /* * | |
| 58 | * @see gov. va.med.fw. model.look up.Abstrac tLookup#fi nalize() | |
| 59 | * / | |
| 60 | pr otected vo id finaliz e() throws Throwable { | |
| 61 | supe r.finalize (); | |
| 62 | if ( this.name != null) { | |
| 63 | this.s etName(nul l); | |
| 64 | } | |
| 65 | } | |
| 66 | ||
| 67 | /* * | |
| 68 | * @see gov. va.med.fw. model.look up.Abstrac tLookup#bu ildToStrin g(org.apac he.commons .lang.buil der.ToStri ngBuilder) | |
| 69 | * / | |
| 70 | pr otected vo id buildTo String(ToS tringBuild er builder ) { | |
| 71 | supe r.buildToS tring(buil der); | |
| 72 | buil der.append ("name", t his.name); | |
| 73 | } | |
| 74 | ||
| 75 | /* * | |
| 76 | * Sets the unique bus iness name for this object. | |
| 77 | * | |
| 78 | * @param na me | |
| 79 | * The uniq ue busines s name for this obje ct. | |
| 80 | * / | |
| 81 | pu blic void setName(St ring name) { | |
| 82 | this .name = na me; | |
| 83 | } | |
| 84 | } |
Araxis Merge (but not the data content of this report) is Copyright © 1993-2016 Araxis Ltd (www.araxis.com). All rights reserved.