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.

16 lines
281 B

  1. package Application;
  2. import java.io.PrintStream;
  3. public class Cli {
  4. private PrintStream printStream;
  5. public Cli(PrintStream printStream) {
  6. this.printStream = printStream;
  7. }
  8. public PrintStream getPrintStream() {
  9. return this.printStream;
  10. }
  11. }