package com.kofax.kmc.kui.uicontrols; import java.util.EventObject; /* loaded from: classes3.dex */ public class TorchLuminanceEvent extends EventObject { private static final long serialVersionUID = 1; private int mh; private boolean mi; private boolean mj; public TorchLuminanceEvent(Object obj, int i, boolean z, boolean z2) { super(obj); this.mh = i; this.mi = z; this.mj = z2; } public final boolean isTorchOn() { return this.mj; } public final boolean isBelowThreshold() { return this.mi; } public final int getLuminance() { return this.mh; } }