01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02:
03: duplicate and use this code are hereby granted provided that this
04:
05: copyright notice is included.
06:
07: *****/
08:
09: /***** This class is generated by an IDL compiler and is ORB-vendor specific.
10:
11: A "dummy" implementation is provided so that the "official" org.omg.*
12:
13: packages may be compiled. In order to actually use a Java ORB,
14:
15: the ORB vendor's implementation will provide a "real"
16:
17: implementation of the class.
18:
19:
20:
21: In order to be conformant the class shall support the signatures
22:
23: specified here, but will have an orb-specific implementation.
24:
25:
26:
27: The class may support additional vendor specific functionality.
28:
29: It shall have at least the inheritance relationships specified
30:
31: here. Any additional (vendor specific) inheritance relationships may
32:
33: only be with other classes and interfaces that are guaranteed to be
34:
35: present in the JDK core.
36:
37: *****/package org.omg.CORBA;
38:
39: public final class UShortSeqHelper {
40:
41: public static void insert(org.omg.CORBA.Any any, short[] _value) {
42:
43: throw new org.omg.CORBA.NO_IMPLEMENT();
44:
45: }
46:
47: public static short[] extract(org.omg.CORBA.Any any) {
48:
49: throw new org.omg.CORBA.NO_IMPLEMENT();
50:
51: }
52:
53: public static org.omg.CORBA.TypeCode type() {
54:
55: throw new org.omg.CORBA.NO_IMPLEMENT();
56:
57: }
58:
59: public static java.lang.String id() {
60:
61: throw new org.omg.CORBA.NO_IMPLEMENT();
62:
63: }
64:
65: public static short[] read(
66:
67: org.omg.CORBA.portable.InputStream _input) {
68:
69: throw new org.omg.CORBA.NO_IMPLEMENT();
70:
71: }
72:
73: public static void write(
74: org.omg.CORBA.portable.OutputStream _output,
75:
76: short[] _value) {
77:
78: throw new org.omg.CORBA.NO_IMPLEMENT();
79:
80: }
81:
82: }
|