1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy;
8
9 import java.util.EventObject;
10
11
12 /***
13 * Passed by events from {@link TCPClientListener}
14 *
15 * @see TCPClient
16 * @see TCPClientListener
17 */
18 public class TCPClientEvent extends EventObject {
19 /***
20 * Constructs a new <code>TCPClientEvent</code>
21 *
22 * @param source The {@link TCPClient} that fired this event
23 */
24 public TCPClientEvent(TCPClient source) {
25 super(source);
26 }
27 }
This page was automatically generated by Maven