comparison flys-backend/src/main/java/de/intevation/seddb/model/GprobeId.java @ 3334:2ae732e2c65c

FLYS backend: Removed trailing whitespace. flys-backend/trunk@4669 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Fri, 15 Jun 2012 09:20:49 +0000
parents aa8ed778c8cc
children 18619c1e7c2a
comparison
equal deleted inserted replaced
3333:76c75c8b9ee0 3334:2ae732e2c65c
20 20
21 public GprobeId(long glotrechteid, int lfdnr) { 21 public GprobeId(long glotrechteid, int lfdnr) {
22 this.glotrechteid = glotrechteid; 22 this.glotrechteid = glotrechteid;
23 this.lfdnr = lfdnr; 23 this.lfdnr = lfdnr;
24 } 24 }
25 25
26 26
27 27
28 @Column(name="GLOTRECHTEID", nullable=false, precision=11, scale=0) 28 @Column(name="GLOTRECHTEID", nullable=false, precision=11, scale=0)
29 public long getGlotrechteid() { 29 public long getGlotrechteid() {
30 return this.glotrechteid; 30 return this.glotrechteid;
31 } 31 }
32 32
33 public void setGlotrechteid(long glotrechteid) { 33 public void setGlotrechteid(long glotrechteid) {
34 this.glotrechteid = glotrechteid; 34 this.glotrechteid = glotrechteid;
35 } 35 }
36 36
37 37
38 @Column(name="LFDNR", nullable=false, precision=5, scale=0) 38 @Column(name="LFDNR", nullable=false, precision=5, scale=0)
39 public int getLfdnr() { 39 public int getLfdnr() {
40 return this.lfdnr; 40 return this.lfdnr;
41 } 41 }
42 42
43 public void setLfdnr(int lfdnr) { 43 public void setLfdnr(int lfdnr) {
44 this.lfdnr = lfdnr; 44 this.lfdnr = lfdnr;
45 } 45 }
46 46
47 47
48 public boolean equals(Object other) { 48 public boolean equals(Object other) {
49 if ( (this == other ) ) return true; 49 if ( (this == other ) ) return true;
50 if ( (other == null ) ) return false; 50 if ( (other == null ) ) return false;
51 if ( !(other instanceof GprobeId) ) return false; 51 if ( !(other instanceof GprobeId) ) return false;
52 GprobeId castOther = ( GprobeId ) other; 52 GprobeId castOther = ( GprobeId ) other;
53 53
54 return (this.getGlotrechteid()==castOther.getGlotrechteid()) 54 return (this.getGlotrechteid()==castOther.getGlotrechteid())
55 && (this.getLfdnr()==castOther.getLfdnr()); 55 && (this.getLfdnr()==castOther.getLfdnr());
56 } 56 }
57 57
58 public int hashCode() { 58 public int hashCode() {
59 int result = 17; 59 int result = 17;
60 60
61 result = 37 * result + (int) this.getGlotrechteid(); 61 result = 37 * result + (int) this.getGlotrechteid();
62 result = 37 * result + this.getLfdnr(); 62 result = 37 * result + this.getLfdnr();
63 return result; 63 return result;
64 } 64 }
65 } 65 }

http://dive4elements.wald.intevation.org