From 1d11df081f3d0213e7ffc9fd7b2846a8bb9bb5c9 Mon Sep 17 00:00:00 2001 From: krolxon Date: Fri, 16 Feb 2024 23:04:13 +0530 Subject: GUI: progress --- History.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 History.java (limited to 'History.java') diff --git a/History.java b/History.java new file mode 100644 index 0000000..32b8598 --- /dev/null +++ b/History.java @@ -0,0 +1,16 @@ +import java.util.Vector; + +public class History { + private Vector hist; + + History() { + hist = new Vector(); + } + + public void addHistory(String h) { + hist.add(h); + } + public Vector getHistory() { + return hist; + } +} -- cgit v1.2.3