A simple method for printing text to a terminal. @param termArea The Label to print to. @param text The String to print.
(Label termArea, String text)
| 168 | * @param text The String to print. |
| 169 | */ |
| 170 | public static void printText(Label termArea, String text) { |
| 171 | termArea.setText(String.format("%s%n%s", termArea.getText(), text)); |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Sets the value of this.rootPriv |