1 32 package com.imagero.uio; 33 34 import java.io.InputStream ; 35 import java.io.PrintStream ; 36 37 42 public class Sys { 43 public static PrintStream out = java.lang.System.out; 44 public static PrintStream err = java.lang.System.err; 45 public static InputStream in = java.lang.System.in; 46 47 public static PrintStream getErr() { 48 return err; 49 } 50 51 public static void setErr(PrintStream err) { 52 Sys.err = err; 53 } 54 55 public static PrintStream getOut() { 56 return out; 57 } 58 59 public static void setOut(PrintStream out) { 60 Sys.out = out; 61 } 62 63 public static InputStream getIn() { 64 return in; 65 } 66 67 public static void setIn(InputStream in) { 68 Sys.in = in; 69 } 70 } 71 | Popular Tags |