60 lines
2.6 KiB
Java
60 lines
2.6 KiB
Java
|
package com.scb.phone.view.activity;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.Button;
|
||
|
import android.widget.TextView;
|
||
|
import com.scb.phone.R;
|
||
|
import com.scb.phone.view.custom.login.CustomKeypad;
|
||
|
import com.scb.phone.view.custom.login.CustomPinInput;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes4.dex */
|
||
|
public class BaseChangePinActivity_ViewBinding extends BaseActivity_ViewBinding {
|
||
|
private View c;
|
||
|
private BaseChangePinActivity e;
|
||
|
|
||
|
public BaseChangePinActivity_ViewBinding(BaseChangePinActivity baseChangePinActivity, View view) {
|
||
|
super(baseChangePinActivity, view);
|
||
|
this.e = baseChangePinActivity;
|
||
|
baseChangePinActivity.customPinInput = (CustomPinInput) pyT.e(view, R.id.custom_pin_input, "field 'customPinInput'", CustomPinInput.class);
|
||
|
baseChangePinActivity.customKeypad = (CustomKeypad) pyT.e(view, R.id.custom_keypad, "field 'customKeypad'", CustomKeypad.class);
|
||
|
baseChangePinActivity.topTextView = (TextView) pyT.e(view, R.id.text_label_top, "field 'topTextView'", TextView.class);
|
||
|
baseChangePinActivity.bottomTextView = (TextView) pyT.e(view, R.id.text_label_bottom, "field 'bottomTextView'", TextView.class);
|
||
|
View a = pyT.a(view, R.id.button_next, "field 'buttonNext' and method 'onNextClick'");
|
||
|
baseChangePinActivity.buttonNext = (Button) pyT.c(a, R.id.button_next, "field 'buttonNext'", Button.class);
|
||
|
this.c = a;
|
||
|
a.setOnClickListener(new gnL(this, baseChangePinActivity) { // from class: com.scb.phone.view.activity.BaseChangePinActivity_ViewBinding.2
|
||
|
private BaseChangePinActivity b;
|
||
|
private BaseChangePinActivity_ViewBinding e;
|
||
|
|
||
|
{
|
||
|
this.e = this;
|
||
|
this.b = baseChangePinActivity;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.b.onNextClick();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override // com.scb.phone.view.activity.BaseActivity_ViewBinding, butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
BaseChangePinActivity baseChangePinActivity = this.e;
|
||
|
if (baseChangePinActivity == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
baseChangePinActivity.customPinInput = null;
|
||
|
baseChangePinActivity.customKeypad = null;
|
||
|
baseChangePinActivity.topTextView = null;
|
||
|
baseChangePinActivity.bottomTextView = null;
|
||
|
baseChangePinActivity.buttonNext = null;
|
||
|
this.c.setOnClickListener(null);
|
||
|
this.c = null;
|
||
|
super.a();
|
||
|
}
|
||
|
}
|