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

import com.adobe.document.xmlform.FileBufferAndId;
import com.adobe.document.xmlform.FileBufferAndIdListHelper;
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 FileBufferAndIdListHolder
implements Streamable {
    public FileBufferAndId[] value;

    public FileBufferAndIdListHolder() {
    }

    public FileBufferAndIdListHolder(FileBufferAndId[] initial) {
        this.value = initial;
    }

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

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

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