PsToPdfServiceHolder.java 834 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.ps2pdf;

import com.adobe.ps2pdf.PsToPdfService;
import com.adobe.ps2pdf.PsToPdfServiceHelper;
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 PsToPdfServiceHolder
implements Streamable {
    public PsToPdfService value;

    public PsToPdfServiceHolder() {
    }

    public PsToPdfServiceHolder(PsToPdfService initial) {
        this.value = initial;
    }

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

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

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