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

import com.adobe.document.xmlform.PacketListHelper;
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 PacketListHolder
implements Streamable {
    public String[] value;

    public PacketListHolder() {
    }

    public PacketListHolder(String[] initial) {
        this.value = initial;
    }

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

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

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