KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > impl > protocol > giopmsgheaders > AddressingDispositionHelper


1 /*
2  * @(#)AddressingDispositionHelper.java 1.8 03/12/19
3  *
4  * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */

7
8 package com.sun.corba.se.impl.protocol.giopmsgheaders;
9
10
11 /**
12 * com/sun/corba/se/impl/protocol/giopmsgheaders/AddressingDispositionHelper.java
13 * Generated by the IDL-to-Java compiler (portable), version "3.0"
14 * from ../../../../../../../src/share/classes/com/sun/corba/se/GiopIDL/g.idl
15 * Sunday, June 4, 2000 5:18:54 PM PDT
16 */

17
18 abstract public class AddressingDispositionHelper
19 {
20   private static String JavaDoc _id = "IDL:messages/AddressingDisposition:1.0";
21
22   public static void insert (org.omg.CORBA.Any JavaDoc a, short that)
23   {
24     org.omg.CORBA.portable.OutputStream JavaDoc out = a.create_output_stream ();
25     a.type (type ());
26     write (out, that);
27     a.read_value (out.create_input_stream (), type ());
28   }
29
30   public static short extract (org.omg.CORBA.Any JavaDoc a)
31   {
32     return read (a.create_input_stream ());
33   }
34
35   private static org.omg.CORBA.TypeCode JavaDoc __typeCode = null;
36   synchronized public static org.omg.CORBA.TypeCode JavaDoc type ()
37   {
38     if (__typeCode == null)
39     {
40       __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_short);
41       __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (com.sun.corba.se.impl.protocol.giopmsgheaders.AddressingDispositionHelper.id (), "AddressingDisposition", __typeCode);
42     }
43     return __typeCode;
44   }
45
46   public static String JavaDoc id ()
47   {
48     return _id;
49   }
50
51   public static short read (org.omg.CORBA.portable.InputStream JavaDoc istream)
52   {
53     short value = (short)0;
54     value = istream.read_short ();
55     return value;
56   }
57
58   public static void write (org.omg.CORBA.portable.OutputStream JavaDoc ostream, short value)
59   {
60     ostream.write_short (value);
61   }
62
63 }
64
Popular Tags