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