KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > TypeDescription


1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
2        duplicate and use this code are hereby granted provided that this
3        copyright notice is included.
4 *****/

5
6 /***** This class is generated by an IDL compiler and is ORB-vendor specific.
7        A "dummy" implementation is provided so that the "official" org.omg.*
8        packages may be compiled. In order to actually use a Java ORB,
9        the ORB vendor's implementation will provide a "real"
10        implementation of the class.
11
12        In order to be conformant the class shall support the signatures
13        specified here, but will have an orb-specific implementation.
14
15        The class may support additional vendor specific functionality.
16        It shall have at least the inheritance relationships specified
17        here. Any additional (vendor specific) inheritance relationships may
18        only be with other classes and interfaces that are guaranteed to be
19        present in the JDK core.
20 *****/

21
22 package org.omg.CORBA;
23
24 public final class TypeDescription implements org.omg.CORBA.portable.IDLEntity JavaDoc{
25
26     public java.lang.String JavaDoc name;
27     public java.lang.String JavaDoc id;
28     public java.lang.String JavaDoc defined_in;
29     public java.lang.String JavaDoc version;
30     public org.omg.CORBA.TypeCode JavaDoc type;
31
32     public TypeDescription() {
33         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
34     }
35
36     public TypeDescription(java.lang.String JavaDoc name,
37                 java.lang.String JavaDoc id,
38                 java.lang.String JavaDoc defined_in,
39                 java.lang.String JavaDoc version,
40                 org.omg.CORBA.TypeCode JavaDoc type) {
41
42         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
43     }
44 }
45
Popular Tags