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

import com.adobe.document.xmlform.PrintOutput;
import com.adobe.document.xmlform.PrintOutputHelper;
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 PrintOutputHolder
implements Streamable {
    public PrintOutput value;

    public PrintOutputHolder() {
    }

    public PrintOutputHolder(PrintOutput initial) {
        this.value = initial;
    }

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

    public void _read(InputStream _in) {
        this.value = PrintOutputHelper.read(_in);
    }

    public void _write(OutputStream _out) {
        PrintOutputHelper.write(_out, this.value);
    }
}