package com.vci.corba.common.data; /** * Generated from IDL alias "byteSeq". * * @author JacORB IDL compiler V 3.9 * @version generated at 2022-12-23 15:42:24 */ public final class byteSeqHolder implements org.omg.CORBA.portable.Streamable { public byte[][] value; public byteSeqHolder () { } public byteSeqHolder (final byte[][] initial) { value = initial; } public org.omg.CORBA.TypeCode _type () { return byteSeqHelper.type (); } public void _read (final org.omg.CORBA.portable.InputStream in) { value = byteSeqHelper.read (in); } public void _write (final org.omg.CORBA.portable.OutputStream out) { byteSeqHelper.write (out,value); } }