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