diff options
author | Bulgakov Alexander <buls@yandex.ru> | 2019-05-20 13:10:14 +0300 |
---|---|---|
committer | Bulgakov Alexander <buls@yandex.ru> | 2019-05-20 13:10:14 +0300 |
commit | 71aea086e4fa9d3fa77e29c5a208ef8e7458c387 (patch) | |
tree | c6b4aac622fa9e88210bbc0b813f8d3cbd7079b5 /test | |
parent | 1fec035aa546b7a033acb67cf4f7c1afb8a79f52 (diff) | |
parent | c479920db17e36392fa69e386156c982fe60cc27 (diff) | |
download | lombok-71aea086e4fa9d3fa77e29c5a208ef8e7458c387.tar.gz lombok-71aea086e4fa9d3fa77e29c5a208ef8e7458c387.tar.bz2 lombok-71aea086e4fa9d3fa77e29c5a208ef8e7458c387.zip |
Merge branch 'master' into feature/typeInferenceImprovements
Diffstat (limited to 'test')
3 files changed, 109 insertions, 0 deletions
diff --git a/test/transform/resource/after-delombok/ValueStaticConstructorOf.java b/test/transform/resource/after-delombok/ValueStaticConstructorOf.java new file mode 100644 index 00000000..fe75f823 --- /dev/null +++ b/test/transform/resource/after-delombok/ValueStaticConstructorOf.java @@ -0,0 +1,50 @@ +public final class ValueStaticConstructorOf { + private final String name; + private final Double price; + private ValueStaticConstructorOf(String name, Double price) { + this.name = name; + this.price = price; + } + @java.lang.SuppressWarnings("all") + public static ValueStaticConstructorOf of(final String name, final Double price) { + return new ValueStaticConstructorOf(name, price); + } + @java.lang.SuppressWarnings("all") + public String getName() { + return this.name; + } + @java.lang.SuppressWarnings("all") + public Double getPrice() { + return this.price; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public boolean equals(final java.lang.Object o) { + if (o == this) return true; + if (!(o instanceof ValueStaticConstructorOf)) return false; + final ValueStaticConstructorOf other = (ValueStaticConstructorOf) o; + final java.lang.Object this$name = this.getName(); + final java.lang.Object other$name = other.getName(); + if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false; + final java.lang.Object this$price = this.getPrice(); + final java.lang.Object other$price = other.getPrice(); + if (this$price == null ? other$price != null : !this$price.equals(other$price)) return false; + return true; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public int hashCode() { + final int PRIME = 59; + int result = 1; + final java.lang.Object $name = this.getName(); + result = result * PRIME + ($name == null ? 43 : $name.hashCode()); + final java.lang.Object $price = this.getPrice(); + result = result * PRIME + ($price == null ? 43 : $price.hashCode()); + return result; + } + @java.lang.Override + @java.lang.SuppressWarnings("all") + public java.lang.String toString() { + return "ValueStaticConstructorOf(name=" + this.getName() + ", price=" + this.getPrice() + ")"; + } +} diff --git a/test/transform/resource/after-ecj/ValueStaticConstructorOf.java b/test/transform/resource/after-ecj/ValueStaticConstructorOf.java new file mode 100644 index 00000000..6cf71ed4 --- /dev/null +++ b/test/transform/resource/after-ecj/ValueStaticConstructorOf.java @@ -0,0 +1,47 @@ +import lombok.Value; +public final @Value(staticConstructor = "of") class ValueStaticConstructorOf { + private final String name; + private final Double price; + private ValueStaticConstructorOf(String name, Double price) { + super(); + this.name = name; + this.price = price; + } + public @java.lang.SuppressWarnings("all") String getName() { + return this.name; + } + public @java.lang.SuppressWarnings("all") Double getPrice() { + return this.price; + } + public @java.lang.Override @java.lang.SuppressWarnings("all") boolean equals(final java.lang.Object o) { + if ((o == this)) + return true; + if ((! (o instanceof ValueStaticConstructorOf))) + return false; + final ValueStaticConstructorOf other = (ValueStaticConstructorOf) o; + final java.lang.Object this$name = this.getName(); + final java.lang.Object other$name = other.getName(); + if (((this$name == null) ? (other$name != null) : (! this$name.equals(other$name)))) + return false; + final java.lang.Object this$price = this.getPrice(); + final java.lang.Object other$price = other.getPrice(); + if (((this$price == null) ? (other$price != null) : (! this$price.equals(other$price)))) + return false; + return true; + } + public @java.lang.Override @java.lang.SuppressWarnings("all") int hashCode() { + final int PRIME = 59; + int result = 1; + final java.lang.Object $name = this.getName(); + result = ((result * PRIME) + (($name == null) ? 43 : $name.hashCode())); + final java.lang.Object $price = this.getPrice(); + result = ((result * PRIME) + (($price == null) ? 43 : $price.hashCode())); + return result; + } + public @java.lang.Override @java.lang.SuppressWarnings("all") java.lang.String toString() { + return (((("ValueStaticConstructorOf(name=" + this.getName()) + ", price=") + this.getPrice()) + ")"); + } + public static @java.lang.SuppressWarnings("all") ValueStaticConstructorOf of(final String name, final Double price) { + return new ValueStaticConstructorOf(name, price); + } +}
\ No newline at end of file diff --git a/test/transform/resource/before/ValueStaticConstructorOf.java b/test/transform/resource/before/ValueStaticConstructorOf.java new file mode 100644 index 00000000..ac857ffd --- /dev/null +++ b/test/transform/resource/before/ValueStaticConstructorOf.java @@ -0,0 +1,12 @@ +import lombok.Value; +@Value(staticConstructor = "of") +public class ValueStaticConstructorOf { + + String name; + Double price; + + private ValueStaticConstructorOf(String name, Double price) { + this.name = name; + this.price = price; + } +} |