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