//******************************************************************** // Words2.java Author: Lewis/Loftus // // Demonstrates the use of the super reference. //******************************************************************** public class Words2 { //----------------------------------------------------------------- // Instantiates a derived class and invokes its inherited and // local methods. //----------------------------------------------------------------- public static void main (String[] args) { Dictionary2 webster = new Dictionary2 (1500, 52500); webster.pageMessage(); webster.definitionMessage(); } }