public class eg30_SubClass3 extends eg30_SuperClass3 { //display int, override one of the superclass methods public void showValue (int arg) { System.out.println("SUBclass: the int argument was " + arg); } //display double, overloads the superclass methods public void showValue (double arg) { System.out.println("SUBclass: the String argument was " + arg); } }