1 package org.lsst.ccs.utilities.sa;
2
3 /**
4 ***************************************************************************
5 **
6 ** \file Output.java
7 **
8 ** Interface for console output
9 **
10 ** \author Owen Saxton
11 **
12 ***************************************************************************
13 */
14 public interface Output {
15
16 void print(Object object);
17
18 void println(Object object);
19
20 void println();
21
22 void format(String format, Object ... object);
23
24 void write(byte[] buff, int offset, int count);
25
26 }