package OT; /** * Represents phonological root node. * @version 1999-03-07 * @author Andrea Heiberg, University of Arizona */ public class Root extends Anchor { public Root (String token) { super(token); } //end constructor public String toString () { return "root(" + super.token + ")"; } //end toString public Root copy () { return new Root(token);; } //end copy } //end class