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