49 lines
1.7 KiB
Java
49 lines
1.7 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.Button;
|
||
|
import com.scb.phone.R;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class NoteEditTextWithButton_ViewBinding extends NoteEditText_ViewBinding {
|
||
|
private NoteEditTextWithButton c;
|
||
|
private View e;
|
||
|
|
||
|
public NoteEditTextWithButton_ViewBinding(NoteEditTextWithButton noteEditTextWithButton, View view) {
|
||
|
super(noteEditTextWithButton, view);
|
||
|
this.c = noteEditTextWithButton;
|
||
|
View a = pyT.a(view, R.id.bt_done, "field 'buttonDone' and method 'onDoneButtonClick'");
|
||
|
noteEditTextWithButton.buttonDone = (Button) pyT.c(a, R.id.bt_done, "field 'buttonDone'", Button.class);
|
||
|
this.e = a;
|
||
|
a.setOnClickListener(new gnL(this, noteEditTextWithButton) { // from class: com.scb.phone.view.custom.common.NoteEditTextWithButton_ViewBinding.3
|
||
|
private NoteEditTextWithButton_ViewBinding b;
|
||
|
private NoteEditTextWithButton d;
|
||
|
|
||
|
{
|
||
|
this.b = this;
|
||
|
this.d = noteEditTextWithButton;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.d.onDoneButtonClick(view2);
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
@Override // com.scb.phone.view.custom.common.NoteEditText_ViewBinding, butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
NoteEditTextWithButton noteEditTextWithButton = this.c;
|
||
|
if (noteEditTextWithButton == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.c = null;
|
||
|
noteEditTextWithButton.buttonDone = null;
|
||
|
this.e.setOnClickListener(null);
|
||
|
this.e = null;
|
||
|
super.a();
|
||
|
}
|
||
|
}
|