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.

InterfaceCast.java 357B

123456789101112131415
  1. /*
  2. 73 addDirectSuperType(getSuperClassDec());
  3. 74 for (Iterator i = getSuperInterfaceDecs().iterator(); i.hasNext(); ) {
  4. 75 InterfaceDec superInterface = (InterfaceDec)i.next();
  5. 76 addDirectSuperType(superInterface);
  6. 77 }
  7. */
  8. public class InterfaceCast {
  9. public static void main(String[] args) {
  10. }
  11. }
  12. class A implements B {}
  13. class B {}