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