what-the-bank/sources/com/scb/phone/view/fragment/ErrorFragment_ViewBinding.java

57 lines
2.1 KiB
Java

package com.scb.phone.view.fragment;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import com.scb.phone.R;
import o.gnL;
import o.pyT;
/* loaded from: classes5.dex */
public class ErrorFragment_ViewBinding extends BaseFragment_ViewBinding {
private ErrorFragment c;
private View e;
public ErrorFragment_ViewBinding(ErrorFragment errorFragment, View view) {
super(errorFragment, view);
this.c = errorFragment;
errorFragment.errorTitle = (TextView) pyT.e(view, R.id.error_title, "field 'errorTitle'", TextView.class);
errorFragment.errorDescription = (TextView) pyT.e(view, R.id.txv_generic_error, "field 'errorDescription'", TextView.class);
errorFragment.errorIcon = (ImageView) pyT.e(view, R.id.error_icon, "field 'errorIcon'", ImageView.class);
View a = pyT.a(view, R.id.bt_contact_us, "field 'btContactUs' and method 'onContactUsClick'");
errorFragment.btContactUs = (Button) pyT.c(a, R.id.bt_contact_us, "field 'btContactUs'", Button.class);
this.e = a;
a.setOnClickListener(new gnL(this, errorFragment) { // from class: com.scb.phone.view.fragment.ErrorFragment_ViewBinding.5
private ErrorFragment b;
private ErrorFragment_ViewBinding d;
{
this.d = this;
this.b = errorFragment;
}
@Override // o.gnL
public final void e(View view2) {
this.b.onContactUsClick();
}
});
}
@Override // com.scb.phone.view.fragment.BaseFragment_ViewBinding, butterknife.Unbinder
public final void a() {
ErrorFragment errorFragment = this.c;
if (errorFragment == null) {
throw new IllegalStateException("Bindings already cleared.");
}
this.c = null;
errorFragment.errorTitle = null;
errorFragment.errorDescription = null;
errorFragment.errorIcon = null;
errorFragment.btContactUs = null;
this.e.setOnClickListener(null);
this.e = null;
super.a();
}
}