26 lines
715 B
Java
26 lines
715 B
Java
package com.kofax.kmc.kut.utilities.appstats;
|
|
|
|
import com.kofax.kmc.kut.utilities.appstats.AppStatistics;
|
|
import java.util.EventObject;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class AppStatsThresholdReachedEvent extends EventObject {
|
|
private static final long serialVersionUID = 7736630429273660485L;
|
|
private AppStatistics.ThresholdType qm;
|
|
private long size;
|
|
|
|
public AppStatsThresholdReachedEvent(Object obj, AppStatistics.ThresholdType thresholdType, long j) {
|
|
super(obj);
|
|
this.qm = thresholdType;
|
|
this.size = j;
|
|
}
|
|
|
|
public AppStatistics.ThresholdType getThresholdType() {
|
|
return this.qm;
|
|
}
|
|
|
|
public long getSize() {
|
|
return this.size;
|
|
}
|
|
}
|