All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.immutables.fixture.generics.FromGenericInh Maven / Gradle / Ivy

There is a newer version: 2.10.1
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy