// Calc stack element // // R. Perry, Jan. 2000 import java.math.BigInteger; public class Element implements Cloneable { String name; BigInteger value; public Element( String name, BigInteger value) { this.name = name; this.value = value; } public synchronized Object clone() throws CloneNotSupportedException { return super.clone(); } }