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

72 lines
2.8 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.Button;
import android.widget.TextView;
import butterknife.Unbinder;
import com.scb.phone.R;
import o.gnL;
import o.pyT;
/* loaded from: classes5.dex */
public final class CustomAcceptDeclineButtons_ViewBinding implements Unbinder {
private View b;
private CustomAcceptDeclineButtons c;
private View d;
public CustomAcceptDeclineButtons_ViewBinding(CustomAcceptDeclineButtons customAcceptDeclineButtons, View view) {
this.c = customAcceptDeclineButtons;
View a = pyT.a(view, R.id.bt_accept, "field 'btAccept' and method 'onAcceptClicked'");
customAcceptDeclineButtons.btAccept = (Button) pyT.c(a, R.id.bt_accept, "field 'btAccept'", Button.class);
this.d = a;
a.setOnClickListener(new gnL(this, customAcceptDeclineButtons) { // from class: com.scb.phone.view.custom.common.CustomAcceptDeclineButtons_ViewBinding.2
private CustomAcceptDeclineButtons a;
private CustomAcceptDeclineButtons_ViewBinding d;
{
this.d = this;
this.a = customAcceptDeclineButtons;
}
@Override // o.gnL
public final void e(View view2) {
this.a.onAcceptClicked();
}
});
View a2 = pyT.a(view, R.id.bt_decline, "field 'btDecline' and method 'onDeclineClicked'");
customAcceptDeclineButtons.btDecline = (Button) pyT.c(a2, R.id.bt_decline, "field 'btDecline'", Button.class);
this.b = a2;
a2.setOnClickListener(new gnL(this, customAcceptDeclineButtons) { // from class: com.scb.phone.view.custom.common.CustomAcceptDeclineButtons_ViewBinding.4
private CustomAcceptDeclineButtons_ViewBinding b;
private CustomAcceptDeclineButtons c;
{
this.b = this;
this.c = customAcceptDeclineButtons;
}
@Override // o.gnL
public final void e(View view2) {
this.c.onDeclineClicked();
}
});
customAcceptDeclineButtons.tvLabel = (TextView) pyT.e(view, R.id.tv_label, "field 'tvLabel'", TextView.class);
}
@Override // butterknife.Unbinder
public final void a() {
CustomAcceptDeclineButtons customAcceptDeclineButtons = this.c;
if (customAcceptDeclineButtons == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
customAcceptDeclineButtons.btAccept = null;
customAcceptDeclineButtons.btDecline = null;
customAcceptDeclineButtons.tvLabel = null;
this.d.setOnClickListener(null);
this.d = null;
this.b.setOnClickListener(null);
this.b = null;
}
}