01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/
05:
06: /***** This class is generated by an IDL compiler and is ORB-vendor specific.
07: A "dummy" implementation is provided so that the "official" org.omg.*
08: packages may be compiled. In order to actually use a Java ORB,
09: 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: *****/package org.omg.PortableServer.POAManagerPackage;
21:
22: public final class AdapterInactiveHelper {
23:
24: public static void insert(
25: org.omg.CORBA.Any any,
26: org.omg.PortableServer.POAManagerPackage.AdapterInactive _value) {
27: throw new org.omg.CORBA.NO_IMPLEMENT();
28: }
29:
30: public static org.omg.PortableServer.POAManagerPackage.AdapterInactive extract(
31: org.omg.CORBA.Any any) {
32: throw new org.omg.CORBA.NO_IMPLEMENT();
33: }
34:
35: public static org.omg.CORBA.TypeCode type() {
36: throw new org.omg.CORBA.NO_IMPLEMENT();
37: }
38:
39: public static java.lang.String id() {
40: throw new org.omg.CORBA.NO_IMPLEMENT();
41: }
42:
43: public static org.omg.PortableServer.POAManagerPackage.AdapterInactive read(
44: org.omg.CORBA.portable.InputStream _input) {
45: throw new org.omg.CORBA.NO_IMPLEMENT();
46: }
47:
48: public static void write(
49: org.omg.CORBA.portable.OutputStream _output,
50: org.omg.PortableServer.POAManagerPackage.AdapterInactive _value) {
51: throw new org.omg.CORBA.NO_IMPLEMENT();
52: }
53:
54: }
|