KickJava   Java API By Example, From Geeks To Geeks.

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


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