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.

Base.java 126B

123456789
  1. package sample;
  2. public abstract class Base implements Iface {
  3. int x;
  4. Base() {
  5. x=1;
  6. }
  7. abstract void foo();
  8. }