74 lines
3.2 KiB
Java
74 lines
3.2 KiB
Java
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 CustomAcceptDeclineConsentButtons_ViewBinding implements Unbinder {
|
|
private View b;
|
|
private CustomAcceptDeclineConsentButtons c;
|
|
private View d;
|
|
|
|
public CustomAcceptDeclineConsentButtons_ViewBinding(CustomAcceptDeclineConsentButtons customAcceptDeclineConsentButtons, View view) {
|
|
this.c = customAcceptDeclineConsentButtons;
|
|
View a = pyT.a(view, R.id.bt_accept, "field 'btAccept' and method 'onAcceptClicked'");
|
|
customAcceptDeclineConsentButtons.btAccept = (Button) pyT.c(a, R.id.bt_accept, "field 'btAccept'", Button.class);
|
|
this.b = a;
|
|
a.setOnClickListener(new gnL(this, customAcceptDeclineConsentButtons) { // from class: com.scb.phone.view.custom.common.CustomAcceptDeclineConsentButtons_ViewBinding.4
|
|
private CustomAcceptDeclineConsentButtons d;
|
|
private CustomAcceptDeclineConsentButtons_ViewBinding e;
|
|
|
|
{
|
|
this.e = this;
|
|
this.d = customAcceptDeclineConsentButtons;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.d.onAcceptClicked();
|
|
}
|
|
});
|
|
View a2 = pyT.a(view, R.id.bt_decline, "field 'btDecline' and method 'onDeclineClicked'");
|
|
customAcceptDeclineConsentButtons.btDecline = (Button) pyT.c(a2, R.id.bt_decline, "field 'btDecline'", Button.class);
|
|
this.d = a2;
|
|
a2.setOnClickListener(new gnL(this, customAcceptDeclineConsentButtons) { // from class: com.scb.phone.view.custom.common.CustomAcceptDeclineConsentButtons_ViewBinding.3
|
|
private CustomAcceptDeclineConsentButtons_ViewBinding c;
|
|
private CustomAcceptDeclineConsentButtons d;
|
|
|
|
{
|
|
this.c = this;
|
|
this.d = customAcceptDeclineConsentButtons;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.d.onDeclineClicked();
|
|
}
|
|
});
|
|
customAcceptDeclineConsentButtons.tvModelConsentTitle = (TextView) pyT.e(view, R.id.tv_model_consent_title, "field 'tvModelConsentTitle'", TextView.class);
|
|
customAcceptDeclineConsentButtons.tvContent = (TextView) pyT.e(view, R.id.tv_content, "field 'tvContent'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomAcceptDeclineConsentButtons customAcceptDeclineConsentButtons = this.c;
|
|
if (customAcceptDeclineConsentButtons == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.c = null;
|
|
customAcceptDeclineConsentButtons.btAccept = null;
|
|
customAcceptDeclineConsentButtons.btDecline = null;
|
|
customAcceptDeclineConsentButtons.tvModelConsentTitle = null;
|
|
customAcceptDeclineConsentButtons.tvContent = null;
|
|
this.b.setOnClickListener(null);
|
|
this.b = null;
|
|
this.d.setOnClickListener(null);
|
|
this.d = null;
|
|
}
|
|
}
|