WSPairListHolder.java 811 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xmlformcallback;

import com.adobe.xmlformcallback.WSPair;
import com.adobe.xmlformcallback.WSPairListHelper;
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 WSPairListHolder
implements Streamable {
    public WSPair[] value;

    public WSPairListHolder() {
    }

    public WSPairListHolder(WSPair[] initial) {
        this.value = initial;
    }

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

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

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