PsToPdfFilePathsHolder.java
856 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.ps2pdf;
import com.adobe.ps2pdf.PsToPdfFilePaths;
import com.adobe.ps2pdf.PsToPdfFilePathsHelper;
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 PsToPdfFilePathsHolder
implements Streamable {
public PsToPdfFilePaths value;
public PsToPdfFilePathsHolder() {
}
public PsToPdfFilePathsHolder(PsToPdfFilePaths initial) {
this.value = initial;
}
public TypeCode _type() {
return PsToPdfFilePathsHelper.type();
}
public void _read(InputStream _in) {
this.value = PsToPdfFilePathsHelper.read(_in);
}
public void _write(OutputStream _out) {
PsToPdfFilePathsHelper.write(_out, this.value);
}
}