KickJava   Java API By Example, From Geeks To Geeks.

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


1 package ist.coach.coachEmfCommon;
2
3 import ist.coach.itut_q816Components.Heartbeat;
4 import org.omg.CosNaming.NameComponent JavaDoc;
5 import org.omg.TimeBase.UtcT;
6
7 public class HeartbeatImpl
8 extends Heartbeat {
9
10     /** The default constructor. */
11     public HeartbeatImpl() {
12
13         systemLabel = new String JavaDoc();
14         channelID = new String JavaDoc();
15         period = 0;
16         timeStamp = new UtcT();
17     }
18
19     public HeartbeatImpl( String JavaDoc systemLabel,
20                         String JavaDoc channelID,
21                         short period,
22                         UtcT timeStamp
23                         ) {
24
25         this.systemLabel = systemLabel;
26         this.channelID = channelID;
27         this.period = period;
28         this.timeStamp = timeStamp;
29     }
30 }
31
Popular Tags