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