[With] renaming lombok.experimental.Wither to lombok.experimental.With

This commit is contained in:
Reinier Zwitserloot
2019-08-27 00:15:47 +02:00
parent 7bf70ed638
commit c11edbf032
88 changed files with 912 additions and 807 deletions
@@ -0,0 +1,89 @@
class With1 {
@lombok.With boolean foo;
void withFoo(boolean foo) {
}
With1(boolean foo) {
}
}
class With2 {
@lombok.With boolean foo;
void withFoo(String foo) {
}
With2(boolean foo) {
}
}
class With3 {
@lombok.With String foo;
void withFoo(boolean foo) {
}
With3(String foo) {
}
}
class With4 {
@lombok.With String foo;
void withFoo(String foo) {
}
With4(String foo) {
}
}
class With5 {
@lombok.With String foo;
void withFoo() {
}
With5(String foo) {
}
}
class With6 {
@lombok.With String foo;
void withFoo(String foo, int x) {
}
With6(String foo) {
}
}
class With7 {
@lombok.With String foo;
void withFoo(String foo, Object... x) {
}
With7(String foo) {
}
}
class With8 {
@lombok.With boolean isFoo;
void withIsFoo(boolean foo) {
}
With8(boolean foo) {
}
}
class With9 {
@lombok.With boolean isFoo;
void withFoo(boolean foo) {
}
With9(boolean foo) {
}
}