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