97 lines
3.5 KiB
Java
97 lines
3.5 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.EditText;
|
||
|
import android.widget.ImageButton;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.TextView;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class ScheduleDate_ViewBinding implements Unbinder {
|
||
|
private View b;
|
||
|
private View c;
|
||
|
private View d;
|
||
|
private ScheduleDate e;
|
||
|
|
||
|
public ScheduleDate_ViewBinding(ScheduleDate scheduleDate, View view) {
|
||
|
this.e = scheduleDate;
|
||
|
scheduleDate.dateLabel = (TextView) pyT.e(view, R.id.text_label, "field 'dateLabel'", TextView.class);
|
||
|
View a = pyT.a(view, R.id.edit_date_field, "field 'dateField' and method 'onFieldClick'");
|
||
|
scheduleDate.dateField = (EditText) pyT.c(a, R.id.edit_date_field, "field 'dateField'", EditText.class);
|
||
|
this.d = a;
|
||
|
a.setOnClickListener(new gnL(this, scheduleDate) { // from class: com.scb.phone.view.custom.common.ScheduleDate_ViewBinding.4
|
||
|
private ScheduleDate_ViewBinding b;
|
||
|
private ScheduleDate e;
|
||
|
|
||
|
{
|
||
|
this.b = this;
|
||
|
this.e = scheduleDate;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.e.onFieldClick();
|
||
|
}
|
||
|
});
|
||
|
View a2 = pyT.a(view, R.id.calendar, "field 'calendarButton' and method 'onCalendarClick'");
|
||
|
scheduleDate.calendarButton = (ImageButton) pyT.c(a2, R.id.calendar, "field 'calendarButton'", ImageButton.class);
|
||
|
this.b = a2;
|
||
|
a2.setOnClickListener(new gnL(this, scheduleDate) { // from class: com.scb.phone.view.custom.common.ScheduleDate_ViewBinding.2
|
||
|
private ScheduleDate a;
|
||
|
private ScheduleDate_ViewBinding c;
|
||
|
|
||
|
{
|
||
|
this.c = this;
|
||
|
this.a = scheduleDate;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.a.onCalendarClick();
|
||
|
}
|
||
|
});
|
||
|
View a3 = pyT.a(view, R.id.edit_input_field2, "field 'paymentField' and method 'onPaymentFieldClick'");
|
||
|
scheduleDate.paymentField = (EditText) pyT.c(a3, R.id.edit_input_field2, "field 'paymentField'", EditText.class);
|
||
|
this.c = a3;
|
||
|
a3.setOnClickListener(new gnL(this, scheduleDate) { // from class: com.scb.phone.view.custom.common.ScheduleDate_ViewBinding.5
|
||
|
private ScheduleDate_ViewBinding c;
|
||
|
private ScheduleDate e;
|
||
|
|
||
|
{
|
||
|
this.c = this;
|
||
|
this.e = scheduleDate;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.e.onPaymentFieldClick();
|
||
|
}
|
||
|
});
|
||
|
scheduleDate.arrowIcon = (ImageView) pyT.e(view, R.id.arrow, "field 'arrowIcon'", ImageView.class);
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
ScheduleDate scheduleDate = this.e;
|
||
|
if (scheduleDate == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.e = null;
|
||
|
scheduleDate.dateLabel = null;
|
||
|
scheduleDate.dateField = null;
|
||
|
scheduleDate.calendarButton = null;
|
||
|
scheduleDate.paymentField = null;
|
||
|
scheduleDate.arrowIcon = null;
|
||
|
this.d.setOnClickListener(null);
|
||
|
this.d = null;
|
||
|
this.b.setOnClickListener(null);
|
||
|
this.b = null;
|
||
|
this.c.setOnClickListener(null);
|
||
|
this.c = null;
|
||
|
}
|
||
|
}
|