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