package com.vci.corba.portal.data;
|
|
/**
|
* Generated from IDL struct "PLUILayout".
|
*
|
* @author JacORB IDL compiler V 3.9
|
* @version generated at 2022-12-23 15:42:24
|
*/
|
|
public final class PLUILayoutHolder
|
implements org.omg.CORBA.portable.Streamable
|
{
|
public com.vci.corba.portal.data.PLUILayout value;
|
|
public PLUILayoutHolder ()
|
{
|
}
|
public PLUILayoutHolder(final com.vci.corba.portal.data.PLUILayout initial)
|
{
|
value = initial;
|
}
|
public org.omg.CORBA.TypeCode _type ()
|
{
|
return com.vci.corba.portal.data.PLUILayoutHelper.type ();
|
}
|
public void _read(final org.omg.CORBA.portable.InputStream _in)
|
{
|
value = com.vci.corba.portal.data.PLUILayoutHelper.read(_in);
|
}
|
public void _write(final org.omg.CORBA.portable.OutputStream _out)
|
{
|
com.vci.corba.portal.data.PLUILayoutHelper.write(_out, value);
|
}
|
}
|