KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > spi > activation > ORBPortInfoListHolder


1 package com.sun.corba.se.spi.activation;
2
3
4 /**
5 * com/sun/corba/se/spi/activation/ORBPortInfoListHolder.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 * Saturday, February 9, 2008 2:04:39 AM PST
9 */

10
11 public final class ORBPortInfoListHolder implements org.omg.CORBA.portable.Streamable JavaDoc
12 {
13   public com.sun.corba.se.spi.activation.ORBPortInfo value[] = null;
14
15   public ORBPortInfoListHolder ()
16   {
17   }
18
19   public ORBPortInfoListHolder (com.sun.corba.se.spi.activation.ORBPortInfo[] initialValue)
20   {
21     value = initialValue;
22   }
23
24   public void _read (org.omg.CORBA.portable.InputStream JavaDoc i)
25   {
26     value = com.sun.corba.se.spi.activation.ORBPortInfoListHelper.read (i);
27   }
28
29   public void _write (org.omg.CORBA.portable.OutputStream JavaDoc o)
30   {
31     com.sun.corba.se.spi.activation.ORBPortInfoListHelper.write (o, value);
32   }
33
34   public org.omg.CORBA.TypeCode JavaDoc _type ()
35   {
36     return com.sun.corba.se.spi.activation.ORBPortInfoListHelper.type ();
37   }
38
39 }
40
Popular Tags