what-the-bank/sources/com/scb/phone/view/custom/common/CustomATMInput_ViewBinding....

53 lines
1.9 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.common;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.gnL;
import o.pyT;
/* loaded from: classes5.dex */
public class CustomATMInput_ViewBinding implements Unbinder {
private CustomATMInput b;
private View c;
public CustomATMInput_ViewBinding(CustomATMInput customATMInput, View view) {
this.b = customATMInput;
customATMInput.atmPin = (ScbEditText) pyT.e(view, R.id.edit_input_field, "field 'atmPin'", ScbEditText.class);
customATMInput.mErrorValidation = (TextView) pyT.e(view, R.id.text_error_label, "field 'mErrorValidation'", TextView.class);
View a = pyT.a(view, R.id.clear_button, "field 'clearButton' and method 'onClearButtonClick'");
customATMInput.clearButton = (ImageButton) pyT.c(a, R.id.clear_button, "field 'clearButton'", ImageButton.class);
this.c = a;
a.setOnClickListener(new gnL(this, customATMInput) { // from class: com.scb.phone.view.custom.common.CustomATMInput_ViewBinding.5
private CustomATMInput c;
private CustomATMInput_ViewBinding d;
{
this.d = this;
this.c = customATMInput;
}
@Override // o.gnL
public final void e(View view2) {
this.c.onClearButtonClick();
}
});
}
@Override // butterknife.Unbinder
public final void a() {
CustomATMInput customATMInput = this.b;
if (customATMInput == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.b = null;
customATMInput.atmPin = null;
customATMInput.mErrorValidation = null;
customATMInput.clearButton = null;
this.c.setOnClickListener(null);
this.c = null;
}
}