ResultStruct.java 770 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.native2pdf.bmc;

import org.omg.CORBA.portable.IDLEntity;

public final class ResultStruct
implements IDLEntity {
    public boolean success = false;
    public int conversionErrorKey = 0;
    public byte[] appMonErrorKey = null;
    public String windowDump = null;
    public String[] errorMsgParams = null;

    public ResultStruct() {
    }

    public ResultStruct(boolean _success, int _conversionErrorKey, byte[] _appMonErrorKey, String _windowDump, String[] _errorMsgParams) {
        this.success = _success;
        this.conversionErrorKey = _conversionErrorKey;
        this.appMonErrorKey = _appMonErrorKey;
        this.windowDump = _windowDump;
        this.errorMsgParams = _errorMsgParams;
    }
}