ResultStructHolder.java
847 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.native2pdf.bmc;
import com.adobe.native2pdf.bmc.ResultStruct;
import com.adobe.native2pdf.bmc.ResultStructHelper;
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 ResultStructHolder
implements Streamable {
public ResultStruct value = null;
public ResultStructHolder() {
}
public ResultStructHolder(ResultStruct initialValue) {
this.value = initialValue;
}
public void _read(InputStream i) {
this.value = ResultStructHelper.read(i);
}
public void _write(OutputStream o) {
ResultStructHelper.write(o, this.value);
}
public TypeCode _type() {
return ResultStructHelper.type();
}
}