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