Z.java :  » Game » aetheria » InheritanceTest » Java Open Source

Java Open Source » Game » aetheria 
aetheria » InheritanceTest » Z.java
package InheritanceTest;

class Z extends X implements C {
  public void c() {
    System.out.println("Z.c()");
  }
  public void z() {
    System.out.println("Z.z()");
  }
  void z_() {
    System.out.println("Z.z_()");
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.