abstract class WithMethodAbstract {
	String foo;
	@java.lang.SuppressWarnings("all")
	public abstract WithMethodAbstract withFoo(final String foo);
}