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