mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-15 06:20:32 +00:00
8 lines
206 B
Java
8 lines
206 B
Java
abstract class WithMethodAbstract {
|
|
@lombok.With String foo;
|
|
WithMethodAbstract() {
|
|
super();
|
|
}
|
|
public abstract @java.lang.SuppressWarnings("all") WithMethodAbstract withFoo(final String foo);
|
|
}
|