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

import com.adobe.document.xmlform.WSBatchAliasArrayHelper;
import com.adobe.document.xmlform.WSTemplateAliases;
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 WSBatchAliasArrayHolder
implements Streamable {
    public WSTemplateAliases[] value;

    public WSBatchAliasArrayHolder() {
    }

    public WSBatchAliasArrayHolder(WSTemplateAliases[] initial) {
        this.value = initial;
    }

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

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

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