63 lines
2.7 KiB
Java
63 lines
2.7 KiB
Java
package com.scb.phone.view.activity.pinchange;
|
|
|
|
import android.view.View;
|
|
import android.widget.TextView;
|
|
import com.scb.phone.R;
|
|
import com.scb.phone.view.activity.BaseActivity_ViewBinding;
|
|
import com.scb.phone.view.custom.common.DefaultButton;
|
|
import com.scb.phone.view.custom.login.CustomKeypad;
|
|
import com.scb.phone.view.custom.login.CustomPinInput;
|
|
import o.gnL;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class PinChangeActivity_ViewBinding extends BaseActivity_ViewBinding {
|
|
private View b;
|
|
private PinChangeActivity d;
|
|
|
|
public PinChangeActivity_ViewBinding(PinChangeActivity pinChangeActivity, View view) {
|
|
super(pinChangeActivity, view);
|
|
this.d = pinChangeActivity;
|
|
pinChangeActivity.customPinInput = (CustomPinInput) pyT.e(view, R.id.custom_pin_input, "field 'customPinInput'", CustomPinInput.class);
|
|
pinChangeActivity.customKeypad = (CustomKeypad) pyT.e(view, R.id.custom_keypad, "field 'customKeypad'", CustomKeypad.class);
|
|
pinChangeActivity.topTextView = (TextView) pyT.e(view, R.id.text_label_top, "field 'topTextView'", TextView.class);
|
|
pinChangeActivity.bottomTextView = (TextView) pyT.e(view, R.id.text_label_bottom, "field 'bottomTextView'", TextView.class);
|
|
pinChangeActivity.titleTextView = (TextView) pyT.e(view, R.id.title_text_view, "field 'titleTextView'", TextView.class);
|
|
View a = pyT.a(view, R.id.button_next, "field 'buttonNext' and method 'onNextClick'");
|
|
pinChangeActivity.buttonNext = (DefaultButton) pyT.c(a, R.id.button_next, "field 'buttonNext'", DefaultButton.class);
|
|
this.b = a;
|
|
a.setOnClickListener(new gnL(this, pinChangeActivity) { // from class: com.scb.phone.view.activity.pinchange.PinChangeActivity_ViewBinding.4
|
|
private PinChangeActivity_ViewBinding c;
|
|
private PinChangeActivity d;
|
|
|
|
{
|
|
this.c = this;
|
|
this.d = pinChangeActivity;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.d.onNextClick();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override // com.scb.phone.view.activity.BaseActivity_ViewBinding, butterknife.Unbinder
|
|
public final void a() {
|
|
PinChangeActivity pinChangeActivity = this.d;
|
|
if (pinChangeActivity == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.d = null;
|
|
pinChangeActivity.customPinInput = null;
|
|
pinChangeActivity.customKeypad = null;
|
|
pinChangeActivity.topTextView = null;
|
|
pinChangeActivity.bottomTextView = null;
|
|
pinChangeActivity.titleTextView = null;
|
|
pinChangeActivity.buttonNext = null;
|
|
this.b.setOnClickListener(null);
|
|
this.b = null;
|
|
super.a();
|
|
}
|
|
}
|