blob: e0b14fc206ba3f1664252168829cdc01d1c542ad (
plain)
1
2
3
4
5
6
7
8
9
10
|
abstract class WithMethodAbstract {
@lombok.With String foo;
WithMethodAbstract() {
super();
}
/**
* @return a clone of this object, except with this updated property (returns {@code this} if an identical value is passed).
*/
public abstract @java.lang.SuppressWarnings("all") WithMethodAbstract withFoo(final String foo);
}
|