1 7 package org.omg.CORBA; 8 9 10 19 20 public final class AnySeqHolder implements org.omg.CORBA.portable.Streamable 21 { 22 public org.omg.CORBA.Any value[] = null; 23 24 public AnySeqHolder () 25 { 26 } 27 28 public AnySeqHolder (org.omg.CORBA.Any [] initialValue) 29 { 30 value = initialValue; 31 } 32 33 public void _read (org.omg.CORBA.portable.InputStream i) 34 { 35 value = org.omg.CORBA.AnySeqHelper.read (i); 36 } 37 38 public void _write (org.omg.CORBA.portable.OutputStream o) 39 { 40 org.omg.CORBA.AnySeqHelper.write (o, value); 41 } 42 43 public org.omg.CORBA.TypeCode _type () 44 { 45 return org.omg.CORBA.AnySeqHelper.type (); 46 } 47 48 } 49 | Popular Tags |