You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Main.java 190B

1234567891011
  1. /**
  2. * @author Hugh Eaves
  3. *
  4. */
  5. public class Main {
  6. public static void main(final String[] args) {
  7. final A<String> object1 = new BImpl();
  8. System.out.println(object1.getValue());
  9. }
  10. }