1 10 11 package ist.coach.coachEmfCommon; 12 import intt.itu.itut_x780.*; 13 14 18 19 public class CreateErrorInfoTypeImpl 20 extends CreateErrorInfoType { 21 22 28 29 public CreateErrorInfoTypeImpl() { 30 31 this.error = new UIDType(); 32 this.details = new String (); 33 this.relatedObjects = new org.omg.CosNaming.NameComponent [0][0]; 34 this.attributeList = new intt.itu.itut_x780.AttributeValueType[0]; 35 } 36 37 43 public CreateErrorInfoTypeImpl(UIDType error, 44 String details) { 45 46 this.error = error; 47 this.details = details; 48 this.relatedObjects = new org.omg.CosNaming.NameComponent [0][0]; 49 this.attributeList = new intt.itu.itut_x780.AttributeValueType[0]; 50 } 51 52 public CreateErrorInfoTypeImpl(UIDType error, 53 String details, 54 org.omg.CosNaming.NameComponent [][] relatedObjects, 55 intt.itu.itut_x780.AttributeValueType[] attributeList) { 56 57 this.error = error; 58 this.details = details; 59 this.relatedObjects = relatedObjects; 60 this.attributeList = attributeList; 61 } 62 } 63 64 65 | Popular Tags |