KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > sqlprofiler > gui > LogReceptionListener


1 /*
2  * Copyright (C) Jahia Ltd. All rights reserved.
3  *
4  * This software is published under the terms of the Jahia Open Software
5  * License version 1.1, a copy of which has been included with this
6  * distribution in the LICENSE.txt file.
7  */

8 package org.jahia.sqlprofiler.gui;
9
10 import java.util.EventListener JavaDoc;
11
12 /**
13  * <p>Title: SQL Profiler</p>
14  * <p>Description: </p>
15  * <p>Copyright: Copyright (c) 2003</p>
16  * <p>Company: Jahia Ltd</p>
17  * @author Serge Huber
18  * @version 1.0
19  */

20
21 public interface LogReceptionListener extends EventListener JavaDoc {
22
23     public void logReceptionConnected(LogReceptionEvent logReceptionEvent);
24     public void logReceptionDisconnected(LogReceptionEvent logReceptionEvent);
25
26     public void logReceptionDataReceived(LogReceptionEvent logReceptionEvent);
27 }
Popular Tags