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

import com.adobe.document.xmlform.RenderInput;
import com.adobe.document.xmlform.RenderInputListHelper;
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 RenderInputListHolder
implements Streamable {
    public RenderInput[] value;

    public RenderInputListHolder() {
    }

    public RenderInputListHolder(RenderInput[] initial) {
        this.value = initial;
    }

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

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

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