KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > nightlabs > base > event > ChangeEvent


1 /*
2  * Created on Mar 15, 2005
3  * by alex
4  *
5  */

6 package com.nightlabs.base.event;
7
8 import org.eclipse.swt.events.TypedEvent;
9
10 /**
11  * @author Alexander Bieber <alex[AT]nightlabs[DOT]de>
12  *
13  * @deprecated Please use the new NightLabs Notification Framework
14  */

15 public class ChangeEvent extends TypedEvent {
16
17     private boolean changeState;
18     /**
19      * @param object
20      */

21     public ChangeEvent(Object JavaDoc object, boolean changeState) {
22         super(object);
23         this.changeState = changeState;
24     }
25
26 // /**
27
// * @param e
28
// */
29
// public ChangeEvent(Event e) {
30
// super(e);
31
// }
32

33 }
34
Popular Tags