diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 17:11:15 +0100 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2012-02-14 17:11:15 +0100 |
commit | 9a50da2d092f86eef6e00e0f518039ad3ef53ec8 (patch) | |
tree | a5bfc35f6685b745540670aca136423d6bf3516a /test/transform/resource/after-eclipse/DataPlain.java | |
parent | 06581537f24fe31ee096960be496bc503059a95e (diff) | |
download | lombok-9a50da2d092f86eef6e00e0f518039ad3ef53ec8.tar.gz lombok-9a50da2d092f86eef6e00e0f518039ad3ef53ec8.tar.bz2 lombok-9a50da2d092f86eef6e00e0f518039ad3ef53ec8.zip |
ecj tests and eclipse tests are now effectively doing the same thing, except the ecj tests are written in a slightly more close-to-reality way, and do work for 'val'. eclipse test aspect removed.
Diffstat (limited to 'test/transform/resource/after-eclipse/DataPlain.java')
-rw-r--r-- | test/transform/resource/after-eclipse/DataPlain.java | 208 |
1 files changed, 0 insertions, 208 deletions
diff --git a/test/transform/resource/after-eclipse/DataPlain.java b/test/transform/resource/after-eclipse/DataPlain.java deleted file mode 100644 index 0c4a6ab0..00000000 --- a/test/transform/resource/after-eclipse/DataPlain.java +++ /dev/null @@ -1,208 +0,0 @@ -import lombok.Data; -@lombok.Data class Data1 { - final int x; - String name; - public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") Data1(final int x) { - super(); - this.x = x; - } - public @java.lang.SuppressWarnings("all") int getX() { - return this.x; - } - public @java.lang.SuppressWarnings("all") String getName() { - return this.name; - } - public @java.lang.SuppressWarnings("all") void setName(final String name) { - this.name = name; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data1))) - return false; - final @java.lang.SuppressWarnings("all") Data1 other = (Data1) o; - if ((! other.canEqual((java.lang.Object) this))) - return false; - if ((this.getX() != other.getX())) - return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) - return false; - return true; - } - public @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { - return (other instanceof Data1); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - final int PRIME = 31; - int result = 1; - result = ((result * PRIME) + this.getX()); - result = ((result * PRIME) + ((this.getName() == null) ? 0 : this.getName().hashCode())); - return result; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return (((("Data1(x=" + this.getX()) + ", name=") + this.getName()) + ")"); - } -} -@Data class Data2 { - final int x; - String name; - public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") Data2(final int x) { - super(); - this.x = x; - } - public @java.lang.SuppressWarnings("all") int getX() { - return this.x; - } - public @java.lang.SuppressWarnings("all") String getName() { - return this.name; - } - public @java.lang.SuppressWarnings("all") void setName(final String name) { - this.name = name; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data2))) - return false; - final @java.lang.SuppressWarnings("all") Data2 other = (Data2) o; - if ((! other.canEqual((java.lang.Object) this))) - return false; - if ((this.getX() != other.getX())) - return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) - return false; - return true; - } - public @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { - return (other instanceof Data2); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - final int PRIME = 31; - int result = 1; - result = ((result * PRIME) + this.getX()); - result = ((result * PRIME) + ((this.getName() == null) ? 0 : this.getName().hashCode())); - return result; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return (((("Data2(x=" + this.getX()) + ", name=") + this.getName()) + ")"); - } -} -final @Data class Data3 { - final int x; - String name; - public @java.beans.ConstructorProperties({"x"}) @java.lang.SuppressWarnings("all") Data3(final int x) { - super(); - this.x = x; - } - public @java.lang.SuppressWarnings("all") int getX() { - return this.x; - } - public @java.lang.SuppressWarnings("all") String getName() { - return this.name; - } - public @java.lang.SuppressWarnings("all") void setName(final String name) { - this.name = name; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data3))) - return false; - final @java.lang.SuppressWarnings("all") Data3 other = (Data3) o; - if ((this.getX() != other.getX())) - return false; - if (((this.getName() == null) ? (other.getName() != null) : (! this.getName().equals((java.lang.Object) other.getName())))) - return false; - return true; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - final int PRIME = 31; - int result = 1; - result = ((result * PRIME) + this.getX()); - result = ((result * PRIME) + ((this.getName() == null) ? 0 : this.getName().hashCode())); - return result; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return (((("Data3(x=" + this.getX()) + ", name=") + this.getName()) + ")"); - } -} -final @Data @lombok.EqualsAndHashCode(callSuper = true) class Data4 extends java.util.Timer { - final int x; - public @java.lang.SuppressWarnings("all") int getX() { - return this.x; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return (("Data4(x=" + this.getX()) + ")"); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data4))) - return false; - final @java.lang.SuppressWarnings("all") Data4 other = (Data4) o; - if ((! other.canEqual((java.lang.Object) this))) - return false; - if ((! super.equals(o))) - return false; - if ((this.getX() != other.getX())) - return false; - return true; - } - public @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { - return (other instanceof Data4); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - final int PRIME = 31; - int result = 1; - result = ((result * PRIME) + super.hashCode()); - result = ((result * PRIME) + this.getX()); - return result; - } - Data4() { - super(); - } -} -@Data class Data5 { - public @java.lang.SuppressWarnings("all") Data5() { - super(); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data5))) - return false; - final @java.lang.SuppressWarnings("all") Data5 other = (Data5) o; - if ((! other.canEqual((java.lang.Object) this))) - return false; - return true; - } - public @java.lang.SuppressWarnings("all") boolean canEqual(final java.lang.Object other) { - return (other instanceof Data5); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - int result = 1; - return result; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return "Data5()"; - } -} -final @Data class Data6 { - public @java.lang.SuppressWarnings("all") Data6() { - super(); - } - public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { - if ((o == this)) - return true; - if ((! (o instanceof Data6))) - return false; - return true; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { - int result = 1; - return result; - } - public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { - return "Data6()"; - } -}
\ No newline at end of file |