KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > C > ORB


1 /***** Copyright (c) 1999-2000 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 specifed by the mapping as abstract.
7        A "dummy" implementation is provided so that the "official" org.omg.*
8        packages may be compiled.
9        
10        ORB-vendors shall provide a complete implementation of the class
11        by extending it with a vendor-specific class which
12        provides "real" implementations for all the methods. E.g.
13
14        package com.acme_orb_vendor.CORBA_2_3;
15        public class ORB extends org.omg.CORBA_2_3 { ... }
16
17        In order to be conformant the class shall support the signatures
18        specified here, but will have an orb-specific implementation.
19
20        The class may support additional vendor specific functionality.
21 *****/

22
23 package org.omg.CORBA_2_5;
24
25 public abstract class ORB extends org.omg.CORBA_2_3.ORB JavaDoc {
26     public String JavaDoc id()
27     {
28     throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc() ;
29     }
30
31     public void register_initial_reference(
32     String JavaDoc object_name,
33     org.omg.CORBA.Object JavaDoc object
34     ) throws org.omg.CORBA.ORBPackage.InvalidName JavaDoc
35     {
36     throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc() ;
37     }
38
39     public org.omg.CORBA.TypeCode JavaDoc create_local_interface_tc(
40                                     String JavaDoc id,
41                                     String JavaDoc name)
42     {
43         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
44     }
45 }
46
Popular Tags