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.ImageButton;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomProxyNumber_ViewBinding implements Unbinder {
|
||
|
private View c;
|
||
|
private CustomProxyNumber e;
|
||
|
|
||
|
public CustomProxyNumber_ViewBinding(CustomProxyNumber customProxyNumber, View view) {
|
||
|
this.e = customProxyNumber;
|
||
|
customProxyNumber.proxyLabel = (TextView) pyT.e(view, R.id.text_label, "field 'proxyLabel'", TextView.class);
|
||
|
customProxyNumber.proxyNumberField = (ScbEditText) pyT.e(view, R.id.edit_input_field, "field 'proxyNumberField'", ScbEditText.class);
|
||
|
customProxyNumber.mErrorValidation = (TextView) pyT.e(view, R.id.text_error_label, "field 'mErrorValidation'", TextView.class);
|
||
|
View a = pyT.a(view, R.id.button_contacts, "field 'buttonContacts' and method 'onContactsButtonClick'");
|
||
|
customProxyNumber.buttonContacts = (ImageButton) pyT.c(a, R.id.button_contacts, "field 'buttonContacts'", ImageButton.class);
|
||
|
this.c = a;
|
||
|
a.setOnClickListener(new gnL(this, customProxyNumber) { // from class: com.scb.phone.view.custom.common.CustomProxyNumber_ViewBinding.1
|
||
|
private CustomProxyNumber a;
|
||
|
private CustomProxyNumber_ViewBinding b;
|
||
|
|
||
|
{
|
||
|
this.b = this;
|
||
|
this.a = customProxyNumber;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.a.onContactsButtonClick();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomProxyNumber customProxyNumber = this.e;
|
||
|
if (customProxyNumber == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
customProxyNumber.proxyLabel = null;
|
||
|
customProxyNumber.proxyNumberField = null;
|
||
|
customProxyNumber.mErrorValidation = null;
|
||
|
customProxyNumber.buttonContacts = null;
|
||
|
this.c.setOnClickListener(null);
|
||
|
this.c = null;
|
||
|
}
|
||
|
}
|