55 lines
2.1 KiB
Java
55 lines
2.1 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.CheckBox;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.gnL;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomCustomizePageItem_ViewBinding implements Unbinder {
|
|
private CustomCustomizePageItem b;
|
|
private View c;
|
|
|
|
public CustomCustomizePageItem_ViewBinding(CustomCustomizePageItem customCustomizePageItem, View view) {
|
|
this.b = customCustomizePageItem;
|
|
customCustomizePageItem.title = (TextView) pyT.e(view, R.id.title, "field 'title'", TextView.class);
|
|
View a = pyT.a(view, R.id.checkbox, "field 'checkBox' and method 'onToggleCheckedChanged'");
|
|
customCustomizePageItem.checkBox = (CheckBox) pyT.c(a, R.id.checkbox, "field 'checkBox'", CheckBox.class);
|
|
this.c = a;
|
|
a.setOnClickListener(new gnL(this, customCustomizePageItem) { // from class: com.scb.phone.view.custom.common.CustomCustomizePageItem_ViewBinding.5
|
|
private CustomCustomizePageItem b;
|
|
private CustomCustomizePageItem_ViewBinding c;
|
|
|
|
{
|
|
this.c = this;
|
|
this.b = customCustomizePageItem;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.b.onToggleCheckedChanged();
|
|
}
|
|
});
|
|
customCustomizePageItem.description = (TextView) pyT.e(view, R.id.description, "field 'description'", TextView.class);
|
|
customCustomizePageItem.divider = pyT.a(view, R.id.custom_cell_divider, "field 'divider'");
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CustomCustomizePageItem customCustomizePageItem = this.b;
|
|
if (customCustomizePageItem == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.b = null;
|
|
customCustomizePageItem.title = null;
|
|
customCustomizePageItem.checkBox = null;
|
|
customCustomizePageItem.description = null;
|
|
customCustomizePageItem.divider = null;
|
|
this.c.setOnClickListener(null);
|
|
this.c = null;
|
|
}
|
|
}
|