You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
337 B

package w9;
import java.util.ArrayList;
import java.util.List;
public class HistoryCommand {
private List<String> commandList = new ArrayList<>();
public void addCommand(String cmd) {
commandList.add(cmd);
}
public List<String> getHistory() {
return new ArrayList<>(commandList);
}
}