1 4 package com.tc.simulator.listener; 5 6 import java.io.PrintStream ; 7 8 9 public class MockOutputListener implements OutputListener { 10 11 public PrintStream out = System.out; 12 public PrintStream err = System.err; 13 14 public void setGlobalId(long globalId) { 15 return; 16 } 17 18 public void println(Object o) { 19 out.println(o); 20 } 21 22 public void printerr(Object o) { 23 err.println(o); 24 } 25 26 } 27 | Popular Tags |