package RTT.corba; /** * RTT/corba/CAnyArgumentsHolder.java . * Generated by the IDL-to-Java compiler (portable), version "3.2" * from OperationInterface.idl * Wednesday, July 11, 2012 5:26:49 PM CEST */ public final class CAnyArgumentsHolder implements org.omg.CORBA.portable.Streamable { public org.omg.CORBA.Any value[] = null; public CAnyArgumentsHolder () { } public CAnyArgumentsHolder (org.omg.CORBA.Any[] initialValue) { value = initialValue; } public void _read (org.omg.CORBA.portable.InputStream i) { value = RTT.corba.CAnyArgumentsHelper.read (i); } public void _write (org.omg.CORBA.portable.OutputStream o) { RTT.corba.CAnyArgumentsHelper.write (o, value); } public org.omg.CORBA.TypeCode _type () { return RTT.corba.CAnyArgumentsHelper.type (); } }