diff options
Diffstat (limited to 'test/transform/resource/after-ecj/EqualsAndHashCodeEmpty.java')
-rw-r--r-- | test/transform/resource/after-ecj/EqualsAndHashCodeEmpty.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/test/transform/resource/after-ecj/EqualsAndHashCodeEmpty.java b/test/transform/resource/after-ecj/EqualsAndHashCodeEmpty.java new file mode 100644 index 00000000..5b7dd624 --- /dev/null +++ b/test/transform/resource/after-ecj/EqualsAndHashCodeEmpty.java @@ -0,0 +1,46 @@ +@lombok.EqualsAndHashCode class EqualsAndHashCodeEmpty { + EqualsAndHashCodeEmpty() { + super(); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { + if ((o == this)) + return true; + if ((! (o instanceof EqualsAndHashCodeEmpty))) + return false; + final EqualsAndHashCodeEmpty other = (EqualsAndHashCodeEmpty) o; + if ((! other.canEqual((java.lang.Object) this))) + return false; + return true; + } + protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { + return (other instanceof EqualsAndHashCodeEmpty); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { + final int result = 1; + return result; + } +} +@lombok.EqualsAndHashCode(callSuper = true) class EqualsAndHashCodeEmptyWithSuper extends EqualsAndHashCodeEmpty { + EqualsAndHashCodeEmptyWithSuper() { + super(); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { + if ((o == this)) + return true; + if ((! (o instanceof EqualsAndHashCodeEmptyWithSuper))) + return false; + final EqualsAndHashCodeEmptyWithSuper other = (EqualsAndHashCodeEmptyWithSuper) o; + if ((! other.canEqual((java.lang.Object) this))) + return false; + if ((! super.equals(o))) + return false; + return true; + } + protected @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { + return (other instanceof EqualsAndHashCodeEmptyWithSuper); + } + public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { + final int result = super.hashCode(); + return result; + } +}
\ No newline at end of file |