/* * @topic T10334 Feb 5, 2013 Inheritance Demo v.1 * @brief class VWCharacter -- top of the class hierarchy */ package inheritance; public class VWCharacter { public void speak() { System.out.println( "D E B U G" ); }//speak }//class VWCharacter