1 package ist.coach.coachEmfCommon; 2 3 import ist.coach.itut_q816Components.OperationalViolation; 4 import org.omg.CosNaming.NameComponent ; 5 import org.omg.TimeBase.UtcT; 6 import intt.itu.itut_x780.AttributeValueType; 7 import intt.itu.itut_x780.SourceIndicatorType; 8 9 public class OperationalViolationImpl 10 extends OperationalViolation { 11 12 13 public OperationalViolationImpl() { 14 15 eventTime = new org.omg.TimeBase.UtcT(); 16 source = new NameComponent [0]; 17 sourceClass = new String (); 18 notificationIdentifier = 0; 19 } 20 21 public OperationalViolationImpl(UtcT eventTime, 22 NameComponent [] source, 23 String sourceClass, 24 int notificationIdentifier 25 ) { 26 27 this.eventTime = eventTime; 28 this.source = source; 29 this.sourceClass = sourceClass; 30 this.notificationIdentifier = notificationIdentifier; 31 } 32 } 33 | Popular Tags |