FontNamesListHolder.java 773 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.ps2pdf;

import com.adobe.ps2pdf.FontNamesListHelper;
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 FontNamesListHolder
implements Streamable {
    public String[] value;

    public FontNamesListHolder() {
    }

    public FontNamesListHolder(String[] initial) {
        this.value = initial;
    }

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

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

    public void _write(OutputStream out) {
        FontNamesListHelper.write(out, this.value);
    }
}