source: fedd/abac-src/rbtm/util/Debug.java @ 8f32dc0

axis_examplecompt_changesinfo-opsversion-1.30version-2.00version-3.01version-3.02
Last change on this file since 8f32dc0 was 8780cbec, checked in by Jay Jacobs <Jay.Jacobs@…>, 15 years ago

ABAC sources from Cobham

  • Property mode set to 100644
File size: 274 bytes
Line 
1package edu.stanford.peer.rbtm.util;
2
3import java.io.*;
4
5public class Debug
6{
7        static PrintStream out = System.out;
8
9        static public void debugInfo(String s) {
10                out.println(s);
11        }
12
13        static public void setOutputStream(PrintStream out) {
14                Debug.out = out;
15        }
16}
Note: See TracBrowser for help on using the repository browser.