import java.util.Vector; public class History { private Vector hist; History() { hist = new Vector(); } public void clearHistory() { hist.clear(); } public Vector getHistory() { return hist; } }