KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > utilities > postinstall > ScreenPrinterInterface


1 /*
2  * ScreenPrinterInterface.java
3  *
4  * Created on October 15, 2003, 11:30 AM
5  */

6
7 package com.quikj.application.utilities.postinstall;
8
9 /**
10  *
11  * @author amit
12  */

13 public interface ScreenPrinterInterface
14 {
15     public void print (String JavaDoc message);
16     public void println (String JavaDoc message);
17 }
18
Popular Tags