Html2PdfFontPathsHolder.java 879 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.html2pdf;

import com.adobe.html2pdf.Html2PdfFontPaths;
import com.adobe.html2pdf.Html2PdfFontPathsHelper;
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 Html2PdfFontPathsHolder
implements Streamable {
    public Html2PdfFontPaths value = null;

    public Html2PdfFontPathsHolder() {
    }

    public Html2PdfFontPathsHolder(Html2PdfFontPaths initialValue) {
        this.value = initialValue;
    }

    public void _read(InputStream i) {
        this.value = Html2PdfFontPathsHelper.read(i);
    }

    public void _write(OutputStream o) {
        Html2PdfFontPathsHelper.write(o, this.value);
    }

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