KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > multiServer > launch > capture > PrintListener


1 /*--- formatted by Jindent 2.1, (www.c-lab.de/~jindent) ---*/
2
3 /*
4  * Enhydra Java Application Server Project
5  *
6  * The contents of this file are subject to the Enhydra Public License
7  * Version 1.1 (the "License"); you may not use this file except in
8  * compliance with the License. You may obtain a copy of the License on
9  * the Enhydra web site ( http://www.enhydra.org/ ).
10  *
11  * Software distributed under the License is distributed on an "AS IS"
12  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
13  * the License for the specific terms governing rights and limitations
14  * under the License.
15  *
16  * The Initial Developer of the Enhydra Application Server is Lutris
17  * Technologies, Inc. The Enhydra Application Server and portions created
18  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
19  * All Rights Reserved.
20  *
21  * Contributor(s):
22  *
23  */

24 package org.enhydra.multiServer.launch.capture;
25 import java.util.EventListener JavaDoc;
26
27 /**
28  * Interface declaration
29  *
30  *
31  * @author
32  * @version %I%, %G%
33  */

34 public interface PrintListener extends EventListener JavaDoc {
35
36     /**
37      * Method declaration
38      *
39      *
40      * @param e
41      *
42      * @see
43      */

44     public abstract void onPrint(PrintEvent e);
45 }
46
Popular Tags