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