/* An inheritance example from Java Gently (3rd Edition) by Judith Bishop. */ public class Animals extends Nature { public Animals (String n) { super(n); } }