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