KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

40
41
42
43 package org.omg.CORBA;
44
45
46
47 public final class UShortSeqHelper {
48
49
50
51     public static void insert(org.omg.CORBA.Any JavaDoc any, short[] _value) {
52
53         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
54
55     }
56
57
58
59     public static short[] extract(org.omg.CORBA.Any JavaDoc any) {
60
61         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
62
63     }
64
65
66
67     public static org.omg.CORBA.TypeCode JavaDoc type() {
68
69         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
70
71     }
72
73
74
75     public static java.lang.String JavaDoc id() {
76
77         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
78
79     }
80
81
82
83     public static short[] read(
84
85                 org.omg.CORBA.portable.InputStream JavaDoc _input) {
86
87         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
88
89     }
90
91
92
93     public static void write(org.omg.CORBA.portable.OutputStream JavaDoc _output,
94
95                 short[] _value) {
96
97         throw new org.omg.CORBA.NO_IMPLEMENT JavaDoc();
98
99     }
100
101
102
103 }
104
105
Popular Tags