Html2PdfSettingsHolder.java
869 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.html2pdf;
import com.adobe.html2pdf.Html2PdfSettings;
import com.adobe.html2pdf.Html2PdfSettingsHelper;
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 Html2PdfSettingsHolder
implements Streamable {
public Html2PdfSettings value = null;
public Html2PdfSettingsHolder() {
}
public Html2PdfSettingsHolder(Html2PdfSettings initialValue) {
this.value = initialValue;
}
public void _read(InputStream i) {
this.value = Html2PdfSettingsHelper.read(i);
}
public void _write(OutputStream o) {
Html2PdfSettingsHelper.write(o, this.value);
}
public TypeCode _type() {
return Html2PdfSettingsHelper.type();
}
}