1 7 8 package org.omg.CORBA; 9 10 28 public final class ServiceInformationHolder 29 implements org.omg.CORBA.portable.Streamable { 30 31 35 public ServiceInformation value; 36 37 41 public ServiceInformationHolder() { 42 this(null); 43 } 44 45 54 public ServiceInformationHolder(org.omg.CORBA.ServiceInformation arg) { 55 value = arg; 56 } 57 58 59 66 public void _write(org.omg.CORBA.portable.OutputStream out) { 67 org.omg.CORBA.ServiceInformationHelper.write(out, value); 68 } 69 70 77 public void _read(org.omg.CORBA.portable.InputStream in) { 78 value = org.omg.CORBA.ServiceInformationHelper.read(in); 79 } 80 81 89 public org.omg.CORBA.TypeCode _type() { 90 return org.omg.CORBA.ServiceInformationHelper.type(); 91 } 92 } 93 94 | Popular Tags |