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: import java.util.EventObject;
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 class LogReceptionEvent extends EventObject {
22:
23: public EventDetails eventDetails = null;
24:
25: public LogReceptionEvent(Object source) {
26: super (source);
27: }
28:
29: public LogReceptionEvent(Object source, EventDetails eventDetails) {
30: this (source);
31: this .eventDetails = eventDetails;
32: }
33:
34: public EventDetails getEventDetails() {
35: return eventDetails;
36: }
37:
38: }
|