55 lines
2.0 KiB
Java
55 lines
2.0 KiB
Java
package com.scb.phone.view.custom.common;
|
|
|
|
import android.view.View;
|
|
import android.widget.EditText;
|
|
import android.widget.TextView;
|
|
import butterknife.Unbinder;
|
|
import com.scb.phone.R;
|
|
import o.gnL;
|
|
import o.pyT;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CounterEditText_ViewBinding implements Unbinder {
|
|
private View b;
|
|
private CounterEditText e;
|
|
|
|
public CounterEditText_ViewBinding(CounterEditText counterEditText, View view) {
|
|
this.e = counterEditText;
|
|
counterEditText.editText = (EditText) pyT.e(view, R.id.edit_text, "field 'editText'", EditText.class);
|
|
counterEditText.textCounter = (TextView) pyT.e(view, R.id.counter, "field 'textCounter'", TextView.class);
|
|
counterEditText.errorText = (TextView) pyT.e(view, R.id.error_text_view, "field 'errorText'", TextView.class);
|
|
counterEditText.titleText = (TextView) pyT.e(view, R.id.title_text, "field 'titleText'", TextView.class);
|
|
View a = pyT.a(view, R.id.edit_clear, "method 'onClickClear'");
|
|
this.b = a;
|
|
a.setOnClickListener(new gnL(this, counterEditText) { // from class: com.scb.phone.view.custom.common.CounterEditText_ViewBinding.2
|
|
private CounterEditText_ViewBinding c;
|
|
private CounterEditText e;
|
|
|
|
{
|
|
this.c = this;
|
|
this.e = counterEditText;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.e.onClickClear();
|
|
}
|
|
});
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public final void a() {
|
|
CounterEditText counterEditText = this.e;
|
|
if (counterEditText == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.e = null;
|
|
counterEditText.editText = null;
|
|
counterEditText.textCounter = null;
|
|
counterEditText.errorText = null;
|
|
counterEditText.titleText = null;
|
|
this.b.setOnClickListener(null);
|
|
this.b = null;
|
|
}
|
|
}
|