KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > transport > channel > GetChannelCommand


1
2 package transport.channel;
3 /**
4  *
5  */

6 public class GetChannelCommand
7 {
8     public int channelID;
9     public GetChannelCommand(int id)
10     {
11         super();
12         channelID = id;
13     }
14     public int getID()
15     {
16         return channelID;
17     }
18 }
19
Popular Tags