/* * Child.java * * Created on March 14, 2001, 4:41 PM */ /** * * @author hstory * @version */ public class Child extends Parent { /** Creates new Child */ public Child() { } void show(String text) { super.show(text,4); } }