32 lines
719 B
Java
32 lines
719 B
Java
|
package com.kofax.kmc.kui.uicontrols;
|
||
|
|
||
|
import com.kofax.kmc.kut.utilities.error.ErrorInfo;
|
||
|
import java.util.EventObject;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class LicenseFoundEvent extends EventObject {
|
||
|
private static final long serialVersionUID = 1;
|
||
|
private ErrorInfo mb;
|
||
|
private int mc;
|
||
|
private String md;
|
||
|
|
||
|
public LicenseFoundEvent(Object obj, ErrorInfo errorInfo, int i, String str) {
|
||
|
super(obj);
|
||
|
this.mb = errorInfo;
|
||
|
this.mc = i;
|
||
|
this.md = str;
|
||
|
}
|
||
|
|
||
|
public String getLicenseString() {
|
||
|
return this.md;
|
||
|
}
|
||
|
|
||
|
public ErrorInfo getErrorInfo() {
|
||
|
return this.mb;
|
||
|
}
|
||
|
|
||
|
public int getDaysRemaining() {
|
||
|
return this.mc;
|
||
|
}
|
||
|
}
|