/* * @topic T10352 Feb 5, 2013 Inheritance Demo v.2 * @brief class VWCharacter -- top of the class hierarchy */ package inheritance; public abstract class VWCharacter { // the name is shared by all subclasses: protected String name; // each subclass must implement this method: abstract public void speak(); }//class VWCharacter