1 package com.sun.corba.se.PortableActivationIDL; 2 3 4 10 11 12 14 public final class ServerIdsHolder implements org.omg.CORBA.portable.Streamable 15 { 16 public String value[] = null; 17 18 public ServerIdsHolder () 19 { 20 } 21 22 public ServerIdsHolder (String [] initialValue) 23 { 24 value = initialValue; 25 } 26 27 public void _read (org.omg.CORBA.portable.InputStream i) 28 { 29 value = com.sun.corba.se.PortableActivationIDL.ServerIdsHelper.read (i); 30 } 31 32 public void _write (org.omg.CORBA.portable.OutputStream o) 33 { 34 com.sun.corba.se.PortableActivationIDL.ServerIdsHelper.write (o, value); 35 } 36 37 public org.omg.CORBA.TypeCode _type () 38 { 39 return com.sun.corba.se.PortableActivationIDL.ServerIdsHelper.type (); 40 } 41 42 } 43 | Popular Tags |