Adds CLI for manually gauging off

This commit is contained in:
Patrick McDonagh
2017-02-10 13:46:29 -06:00
parent 61cc02cc7f
commit 1384c40add
2 changed files with 48 additions and 73 deletions

View File

@@ -37,6 +37,11 @@ class CLScanner implements Runnable {
poc.thisWell.printTotals();
}
private void gaugeOff() {
poc.thisWell.gaugeOff();
poc.thisWell.printTotals();
}
private void help(){
System.out.println("");
System.out.println("== HELP MENU ==");
@@ -77,6 +82,9 @@ class CLScanner implements Runnable {
case "showtapers":
showTapers();
break;
case "gaugeoff":
gaugeOff();
break;
case "help":
help();
break;