58 lines
2.1 KiB
Java
58 lines
2.1 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.EditText;
|
||
|
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 InputText_ViewBinding implements Unbinder {
|
||
|
private View d;
|
||
|
private InputText e;
|
||
|
|
||
|
public InputText_ViewBinding(InputText inputText, View view) {
|
||
|
this.e = inputText;
|
||
|
inputText.titleText = (TextView) pyT.e(view, R.id.title_text, "field 'titleText'", TextView.class);
|
||
|
inputText.counterText = (TextView) pyT.e(view, R.id.counter, "field 'counterText'", TextView.class);
|
||
|
inputText.inputEditText = (EditText) pyT.e(view, R.id.input, "field 'inputEditText'", EditText.class);
|
||
|
inputText.errorText = (TextView) pyT.e(view, R.id.error_text_view, "field 'errorText'", TextView.class);
|
||
|
View a = pyT.a(view, R.id.edit_clear, "field 'clearButton' and method 'onClearButtonClick'");
|
||
|
inputText.clearButton = (ImageButton) pyT.c(a, R.id.edit_clear, "field 'clearButton'", ImageButton.class);
|
||
|
this.d = a;
|
||
|
a.setOnClickListener(new gnL(this, inputText) { // from class: com.scb.phone.view.custom.common.InputText_ViewBinding.1
|
||
|
private InputText_ViewBinding a;
|
||
|
private InputText d;
|
||
|
|
||
|
{
|
||
|
this.a = this;
|
||
|
this.d = inputText;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.d.onClearButtonClick();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
InputText inputText = this.e;
|
||
|
if (inputText == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
inputText.titleText = null;
|
||
|
inputText.counterText = null;
|
||
|
inputText.inputEditText = null;
|
||
|
inputText.errorText = null;
|
||
|
inputText.clearButton = null;
|
||
|
this.d.setOnClickListener(null);
|
||
|
this.d = null;
|
||
|
}
|
||
|
}
|