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 NoteEditText_ViewBinding implements Unbinder {
|
|
private View c;
|
|
private NoteEditText e;
|
|
|
|
public NoteEditText_ViewBinding(NoteEditText noteEditText, View view) {
|
|
this.e = noteEditText;
|
|
noteEditText.mNoteEditText = (EditText) pyT.e(view, R.id.note, "field 'mNoteEditText'", EditText.class);
|
|
noteEditText.mTextCounter = (TextView) pyT.e(view, R.id.counter, "field 'mTextCounter'", TextView.class);
|
|
noteEditText.mErrorText = (TextView) pyT.e(view, R.id.error_text_view, "field 'mErrorText'", TextView.class);
|
|
View a = pyT.a(view, R.id.edit_clear, "field 'mClearButton' and method 'onClickClear'");
|
|
noteEditText.mClearButton = (ImageButton) pyT.c(a, R.id.edit_clear, "field 'mClearButton'", ImageButton.class);
|
|
this.c = a;
|
|
a.setOnClickListener(new gnL(this, noteEditText) { // from class: com.scb.phone.view.custom.common.NoteEditText_ViewBinding.1
|
|
private NoteEditText_ViewBinding a;
|
|
private NoteEditText d;
|
|
|
|
{
|
|
this.a = this;
|
|
this.d = noteEditText;
|
|
}
|
|
|
|
@Override // o.gnL
|
|
public final void e(View view2) {
|
|
this.d.onClickClear();
|
|
}
|
|
});
|
|
noteEditText.mTitleText = (TextView) pyT.e(view, R.id.title_text, "field 'mTitleText'", TextView.class);
|
|
}
|
|
|
|
@Override // butterknife.Unbinder
|
|
public void a() {
|
|
NoteEditText noteEditText = this.e;
|
|
if (noteEditText == null) {
|
|
throw new IllegalStateException("Bindings already cleared.");
|
|
}
|
|
this.e = null;
|
|
noteEditText.mNoteEditText = null;
|
|
noteEditText.mTextCounter = null;
|
|
noteEditText.mErrorText = null;
|
|
noteEditText.mClearButton = null;
|
|
noteEditText.mTitleText = null;
|
|
this.c.setOnClickListener(null);
|
|
this.c = null;
|
|
}
|
|
}
|