|
|||||||||||||||||||
Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover. | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
ChangeEvent.java | - | 100% | 100% | 100% |
|
1 |
/* |
|
2 |
* Angkor Web Framework |
|
3 |
* |
|
4 |
* Distributable under LGPL license. |
|
5 |
* See terms of license at gnu.org. |
|
6 |
*/ |
|
7 |
package com.tirsen.angkor.event; |
|
8 |
|
|
9 |
import java.util.EventObject; |
|
10 |
|
|
11 |
/** |
|
12 |
* ChangeEvent is used to notify interested parties that state has changed in the event source. |
|
13 |
* The listener needs to determine by itself the change that actually occured. |
|
14 |
* |
|
15 |
* <!-- $Id: ChangeEvent.java,v 1.2 2002/10/07 19:49:19 tirsen Exp $ --> |
|
16 |
* |
|
17 |
* @author $Author: tirsen $ |
|
18 |
* @version $Revision: 1.2 $ |
|
19 |
* @see ActionListener |
|
20 |
*/ |
|
21 |
public class ChangeEvent extends EventObject |
|
22 |
{ |
|
23 | 35 |
public ChangeEvent(Object source) |
24 |
{ |
|
25 | 35 |
super(source); |
26 |
} |
|
27 |
} |
|
28 |
|
|