added PrintSpooler.java

git-svn-id: svn://anubis/gvsu@70 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-03-20 04:22:43 +00:00
parent 2d591362ab
commit 33466b5ca6

View File

@ -0,0 +1,17 @@
public class PrintSpooler
{
private static PrintSpooler spooler;
public static PrintSpooler getSpooler()
{
if (spooler == null)
spooler = new PrintSpooler();
return spooler;
}
public void printDocument(String s)
{
System.out.println(s);
}
}