BatchInputListHolder.java 854 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.document.xmlform;

import com.adobe.document.xmlform.BatchInput;
import com.adobe.document.xmlform.BatchInputListHelper;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;

public final class BatchInputListHolder
implements Streamable {
    public BatchInput[] value;

    public BatchInputListHolder() {
    }

    public BatchInputListHolder(BatchInput[] initial) {
        this.value = initial;
    }

    public TypeCode _type() {
        return BatchInputListHelper.type();
    }

    public void _read(InputStream in) {
        this.value = BatchInputListHelper.read(in);
    }

    public void _write(OutputStream out) {
        BatchInputListHelper.write(out, this.value);
    }
}