AvailableFontsHolder.java
833 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.ps2pdf;
import com.adobe.ps2pdf.AvailableFontsHelper;
import com.adobe.ps2pdf.FontsInFolder;
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 AvailableFontsHolder
implements Streamable {
public FontsInFolder[] value;
public AvailableFontsHolder() {
}
public AvailableFontsHolder(FontsInFolder[] initial) {
this.value = initial;
}
public TypeCode _type() {
return AvailableFontsHelper.type();
}
public void _read(InputStream in) {
this.value = AvailableFontsHelper.read(in);
}
public void _write(OutputStream out) {
AvailableFontsHelper.write(out, this.value);
}
}