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