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