53 lines
2.1 KiB
Java
53 lines
2.1 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.ImageView;
|
|
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 CustomTextviewOutlineWithIcon_ViewBinding implements Unbinder {
|
|
private CustomTextviewOutlineWithIcon b;
|
|
private View c;
|
|
|
|
public CustomTextviewOutlineWithIcon_ViewBinding(CustomTextviewOutlineWithIcon customTextviewOutlineWithIcon, View view) {
|
|
this.b = customTextviewOutlineWithIcon;
|
|
customTextviewOutlineWithIcon.tvTitle = (TextView) pyT.e(view, R.id.tv_title, "field 'tvTitle'", TextView.class);
|
|
View a = pyT.a(view, R.id.tv_name, "field 'tvName' and method 'onClick'");
|
|
customTextviewOutlineWithIcon.tvName = (TextView) pyT.c(a, R.id.tv_name, "field 'tvName'", TextView.class);
|
|
this.c = a;
|
|
a.setOnClickListener(new gnL(this, customTextviewOutlineWithIcon) { // from class: com.scb.phone.view.custom.common.CustomTextviewOutlineWithIcon_ViewBinding.4
|
|
private CustomTextviewOutlineWithIcon b;
|
|
private CustomTextviewOutlineWithIcon_ViewBinding d;
|
|
|
|
{
|
|
this.d = this;
|
|
this.b = customTextviewOutlineWithIcon;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.b.onClick();
|
|
}
|
|
});
|
|
customTextviewOutlineWithIcon.ivIcon = (ImageView) pyT.e(view, R.id.iv_icon, "field 'ivIcon'", ImageView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomTextviewOutlineWithIcon customTextviewOutlineWithIcon = this.b;
|
|
if (customTextviewOutlineWithIcon == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customTextviewOutlineWithIcon.tvTitle = null;
|
|
customTextviewOutlineWithIcon.tvName = null;
|
|
customTextviewOutlineWithIcon.ivIcon = null;
|
|
this.c.setOnClickListener(null);
|
|
this.c = null;
|
|
}
|
|
}
|