// using super in a constructor public MyClass ( Thing thing, Color color ) { // call the original constructor super( thing ); this.color = color; } // using super in a method public void myMethod ( Font font ) { // use the original myMethod. super.myMethod ( font ); // use the original otherMethod. super.otherMethod ( font ); }