//******************************************************************** // Advice.java Author: Lewis and Loftus // // Represents a hopefully helpful piece of advice. //******************************************************************** class Advice extends Thought { //----------------------------------------------------------------- // Prints a message. This method overrides the parent's version. // It also invokes the parent's version explicitly using super. //----------------------------------------------------------------- public void message() { System.out.println ("Warning: Dates in calendar are closer " + "than they appear."); System.out.println(); super.message(); } }