aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2018-06-18 23:46:42 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-06-18 23:56:27 +0200
commitf241ef8c309b90faacabe66431b9deaebfd7087a (patch)
tree7b46ee984c385ab49930e6721ab390eac285ce13 /test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java
parent2264ce492c77f92c03bf75a6c209ed240b247d09 (diff)
downloadlombok-f241ef8c309b90faacabe66431b9deaebfd7087a.tar.gz
lombok-f241ef8c309b90faacabe66431b9deaebfd7087a.tar.bz2
lombok-f241ef8c309b90faacabe66431b9deaebfd7087a.zip
Transient fields should by default be excluded from equals and hashCode. Fixes #1724
Diffstat (limited to 'test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java')
-rw-r--r--test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java b/test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java
new file mode 100644
index 00000000..7e6e171b
--- /dev/null
+++ b/test/transform/resource/after-ecj/EqualsAndHashCodeAutoExclude.java
@@ -0,0 +1,70 @@
+@lombok.EqualsAndHashCode class EqualsAndHashCodeAutoExclude {
+ int x;
+ String $a;
+ transient String b;
+ EqualsAndHashCodeAutoExclude() {
+ super();
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
+ if ((o == this))
+ return true;
+ if ((! (o instanceof EqualsAndHashCodeAutoExclude)))
+ return false;
+ final EqualsAndHashCodeAutoExclude other = (EqualsAndHashCodeAutoExclude) o;
+ if ((! other.canEqual((java.lang.Object) this)))
+ return false;
+ if ((this.x != other.x))
+ return false;
+ return true;
+ }
+ protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
+ return (other instanceof EqualsAndHashCodeAutoExclude);
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
+ final int PRIME = 59;
+ int result = 1;
+ result = ((result * PRIME) + this.x);
+ return result;
+ }
+}
+@lombok.EqualsAndHashCode class EqualsAndHashCodeAutoExclude2 {
+ int x;
+ @lombok.EqualsAndHashCode.Include String $a;
+ transient @lombok.EqualsAndHashCode.Include String b;
+ EqualsAndHashCodeAutoExclude2() {
+ super();
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) {
+ if ((o == this))
+ return true;
+ if ((! (o instanceof EqualsAndHashCodeAutoExclude2)))
+ return false;
+ final EqualsAndHashCodeAutoExclude2 other = (EqualsAndHashCodeAutoExclude2) o;
+ if ((! other.canEqual((java.lang.Object) this)))
+ return false;
+ if ((this.x != other.x))
+ return false;
+ final java.lang.Object this$$a = this.$a;
+ final java.lang.Object other$$a = other.$a;
+ if (((this$$a == null) ? (other$$a != null) : (! this$$a.equals(other$$a))))
+ return false;
+ final java.lang.Object this$b = this.b;
+ final java.lang.Object other$b = other.b;
+ if (((this$b == null) ? (other$b != null) : (! this$b.equals(other$b))))
+ return false;
+ return true;
+ }
+ protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) {
+ return (other instanceof EqualsAndHashCodeAutoExclude2);
+ }
+ public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() {
+ final int PRIME = 59;
+ int result = 1;
+ result = ((result * PRIME) + this.x);
+ final java.lang.Object $$a = this.$a;
+ result = ((result * PRIME) + (($$a == null) ? 43 : $$a.hashCode()));
+ final java.lang.Object $b = this.b;
+ result = ((result * PRIME) + (($b == null) ? 43 : $b.hashCode()));
+ return result;
+ }
+}