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