01: /*
02: * Copyright (C) Jahia Ltd. All rights reserved.
03: *
04: * This software is published under the terms of the Jahia Open Software
05: * License version 1.1, a copy of which has been included with this
06: * distribution in the LICENSE.txt file.
07: */
08: package org.jahia.sqlprofiler.gui;
09:
10: /**
11: * <p>Title: SQL Profiler</p>
12: * <p>Description: </p>
13: * <p>Copyright: Copyright (c) 2003</p>
14: * <p>Company: Jahia Ltd</p>
15: * @author Serge Huber
16: * @version 1.0
17: */
18:
19: public class LogReceptionAdapter implements LogReceptionListener {
20: public LogReceptionAdapter() {
21: }
22:
23: public void logReceptionConnected(
24: LogReceptionEvent logReceptionEvent) {
25:
26: }
27:
28: public void logReceptionDisconnected(
29: LogReceptionEvent logReceptionEvent) {
30:
31: }
32:
33: public void logReceptionDataReceived(
34: LogReceptionEvent logReceptionEvent) {
35:
36: }
37:
38: }
|