KickJava   Java API By Example, From Geeks To Geeks.

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


1 package ist.coach.coachEmfCommon;
2
3 import ist.coach.itut_q816Components.ObjectCreation;
4 import org.omg.CosNaming.NameComponent JavaDoc;
5 import org.omg.TimeBase.UtcT;
6 import intt.itu.itut_x780.AttributeValueType;
7 import intt.itu.itut_x780.SourceIndicatorType;
8
9 public class ObjectCreationImpl
10 extends ObjectCreation {
11
12     /** The default constructor. */
13     public ObjectCreationImpl() {
14
15         eventTime = new org.omg.TimeBase.UtcT();
16         source = new NameComponent JavaDoc[0];
17         sourceClass = new String JavaDoc();
18         notificationIdentifier = 0;
19         sourceIndicator = SourceIndicatorType.unknown;
20         attributeList = new AttributeValueType[0];
21     }
22
23     public ObjectCreationImpl(UtcT eventTime,
24                                 NameComponent JavaDoc[] source,
25                                 String JavaDoc sourceClass,
26                                 int notificationIdentifier,
27                                 SourceIndicatorType sourceIndicator,
28                                 AttributeValueType[] attributeList
29                             ) {
30
31         this.eventTime = eventTime;
32         this.source = source;
33         this.sourceClass = sourceClass;
34         this.notificationIdentifier = notificationIdentifier;
35         this.sourceIndicator = sourceIndicator;
36         this.attributeList = attributeList;
37     }
38 }
39
Popular Tags