blob: cb71357a71f6c306af409e76873b29aee3c135c9 (
plain)
1
2
3
4
5
6
7
|
abstract class WithMethodAbstract {
@lombok.With String foo;
WithMethodAbstract() {
super();
}
public abstract @java.lang.SuppressWarnings("all") WithMethodAbstract withFoo(final String foo);
}
|