FormFactoryHolder.java
834 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.document.xmlform;
import com.adobe.document.xmlform.FormFactory;
import com.adobe.document.xmlform.FormFactoryHelper;
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 FormFactoryHolder
implements Streamable {
public FormFactory value;
public FormFactoryHolder() {
}
public FormFactoryHolder(FormFactory initial) {
this.value = initial;
}
public TypeCode _type() {
return FormFactoryHelper.type();
}
public void _read(InputStream in) {
this.value = FormFactoryHelper.read(in);
}
public void _write(OutputStream _out) {
FormFactoryHelper.write(_out, this.value);
}
}