org.immutables.fixture.generics.FromGenericInh Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of value-fixture Show documentation
Show all versions of value-fixture Show documentation
Module that contains all tests for the code generation capability
package org.immutables.fixture.generics;
import org.immutables.value.Value;
public interface FromGenericInh {
public interface Bar extends Foo {
String getBarId();
//
// @Override
// Bar getFoo();
}
@Value.Immutable
public interface Baz extends Bar {
String getBazId();
}
public interface Foo {
T getFoo();
}
}