KickJava   Java API By Example, From Geeks To Geeks.

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


1 /*====================================================================
2
3 Copyright (C) 2002 INTRACOM/COACH Project
4 Contact: fset@intracom.gr
5
6 Initial developer(s): Fofy Setaki.
7 Contributor(s): ______________________________________.
8
9 ====================================================================*/

10
11 package ist.coach.coachEmfCommon;
12 import intt.itu.itut_x780.*;
13
14 /**
15  * This is the implementation of the OMG IDL3
16  * itut_x780Components::ApplicationErrorInfoType valuetype.
17  */

18
19 public class ApplicationErrorInfoTypeImpl
20 extends ApplicationErrorInfoType {
21
22     // ==================================================================
23
//
24
// Constructor.
25
//
26
// ==================================================================
27

28     /** The default constructor. */
29     public ApplicationErrorInfoTypeImpl() {
30
31          this.error = new UIDType();
32          this.details = new String JavaDoc();
33     }
34     
35     /**
36      * The constructor.
37      *
38      * @param source Object emitting notification.
39      * @param sourceClass Actual class of source object.
40      */

41     public ApplicationErrorInfoTypeImpl(UIDType error,
42                             String JavaDoc details) {
43         
44         this.error = error;
45         this.details = details;
46     }
47 }
48
49
50
Popular Tags