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