KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ist > coach > coachEmfCommon > ChannelChangeEventImpl


1 package ist.coach.coachEmfCommon;
2
3 import ist.coach.itut_q816Components.ChannelChangeEvent;
4 import intt.itu.itut_q816.ChannelModificationType;
5 import intt.itu.itut_q816.ChannelInfoType;
6
7 public class ChannelChangeEventImpl
8 extends ChannelChangeEvent {
9
10     /** The default constructor. */
11     public ChannelChangeEventImpl() {
12         channelModification = ChannelModificationType.ChannelUpdate;
13         channelInfo = new ChannelInfoType();
14
15     }
16
17     public ChannelChangeEventImpl(ChannelModificationType channelModification,
18                                 ChannelInfoType channelInfo
19                                 ) {
20
21         this.channelInfo = channelInfo;
22         this.channelModification = channelModification;
23     }
24 }
25
Popular Tags