1 package ist.coach.coachEmfCommon; 2 3 import ist.coach.itut_q816Components.Heartbeat; 4 import org.omg.CosNaming.NameComponent ; 5 import org.omg.TimeBase.UtcT; 6 7 public class HeartbeatImpl 8 extends Heartbeat { 9 10 11 public HeartbeatImpl() { 12 13 systemLabel = new String (); 14 channelID = new String (); 15 period = 0; 16 timeStamp = new UtcT(); 17 } 18 19 public HeartbeatImpl( String systemLabel, 20 String 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 |