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