/*
 * File: ./REMOTEINTERFACE/ARGSHOLDER.JAVA
 * From: REMOTE.IDL
 * Date: Thu Jan 21 23:55:04 1999
 *   By: C:\JDK1.2\BIN\IDLTOJ~1.EXE Java IDL 1.2 Nov 10 1997 13:52:11
 */

package RemoteInterface;
public final class argsHolder
    implements org.omg.CORBA.portable.Streamable
{
    //	instance variable 
    public String[] value;
    //	constructors 
    public argsHolder() {
	this(null);
    }
    public argsHolder(String[] __arg) {
	value = __arg;
    }
    public void _write(org.omg.CORBA.portable.OutputStream out) {
        RemoteInterface.argsHelper.write(out, value);
    }

    public void _read(org.omg.CORBA.portable.InputStream in) {
        value = RemoteInterface.argsHelper.read(in);
    }

    public org.omg.CORBA.TypeCode _type() {
        return RemoteInterface.argsHelper.type();
    }
}
