67 lines
3.0 KiB
Java
67 lines
3.0 KiB
Java
|
package com.scb.phone.view.custom.common;
|
||
|
|
||
|
import android.view.View;
|
||
|
import android.widget.ImageView;
|
||
|
import android.widget.Spinner;
|
||
|
import android.widget.TextView;
|
||
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
||
|
import butterknife.Unbinder;
|
||
|
import com.scb.phone.R;
|
||
|
import o.gnL;
|
||
|
import o.pyT;
|
||
|
|
||
|
/* loaded from: classes5.dex */
|
||
|
public class CustomSchedulePayment_ViewBinding implements Unbinder {
|
||
|
private CustomSchedulePayment b;
|
||
|
private View e;
|
||
|
|
||
|
public CustomSchedulePayment_ViewBinding(CustomSchedulePayment customSchedulePayment, View view) {
|
||
|
this.b = customSchedulePayment;
|
||
|
customSchedulePayment.container = (ConstraintLayout) pyT.e(view, R.id.container, "field 'container'", ConstraintLayout.class);
|
||
|
customSchedulePayment.spinner = (Spinner) pyT.e(view, R.id.spinner, "field 'spinner'", Spinner.class);
|
||
|
customSchedulePayment.etAmount = (AmountEditText) pyT.e(view, R.id.et_amount, "field 'etAmount'", AmountEditText.class);
|
||
|
customSchedulePayment.tvCurrency = (TextView) pyT.e(view, R.id.tv_currency, "field 'tvCurrency'", TextView.class);
|
||
|
customSchedulePayment.tvExtraInfo = (TextView) pyT.e(view, R.id.tv_extra_info, "field 'tvExtraInfo'", TextView.class);
|
||
|
customSchedulePayment.tvError = (TextView) pyT.e(view, R.id.tv_error, "field 'tvError'", TextView.class);
|
||
|
View a = pyT.a(view, R.id.ivSpinnerArrow, "field 'ivSpinnerArrow' and method 'onClickArrow'");
|
||
|
customSchedulePayment.ivSpinnerArrow = (ImageView) pyT.c(a, R.id.ivSpinnerArrow, "field 'ivSpinnerArrow'", ImageView.class);
|
||
|
this.e = a;
|
||
|
a.setOnClickListener(new gnL(this, customSchedulePayment) { // from class: com.scb.phone.view.custom.common.CustomSchedulePayment_ViewBinding.3
|
||
|
private CustomSchedulePayment_ViewBinding b;
|
||
|
private CustomSchedulePayment e;
|
||
|
|
||
|
{
|
||
|
this.b = this;
|
||
|
this.e = customSchedulePayment;
|
||
|
}
|
||
|
|
||
|
@Override // o.gnL
|
||
|
public final void e(View view2) {
|
||
|
this.e.onClickArrow();
|
||
|
}
|
||
|
});
|
||
|
customSchedulePayment.vSeparator = pyT.a(view, R.id.v_separator, "field 'vSeparator'");
|
||
|
customSchedulePayment.clickableSpinner = pyT.a(view, R.id.clickable_spinner, "field 'clickableSpinner'");
|
||
|
}
|
||
|
|
||
|
@Override // butterknife.Unbinder
|
||
|
public final void a() {
|
||
|
CustomSchedulePayment customSchedulePayment = this.b;
|
||
|
if (customSchedulePayment == null) {
|
||
|
throw new IllegalStateException("Bindings already cleared.");
|
||
|
}
|
||
|
this.b = null;
|
||
|
customSchedulePayment.container = null;
|
||
|
customSchedulePayment.spinner = null;
|
||
|
customSchedulePayment.etAmount = null;
|
||
|
customSchedulePayment.tvCurrency = null;
|
||
|
customSchedulePayment.tvExtraInfo = null;
|
||
|
customSchedulePayment.tvError = null;
|
||
|
customSchedulePayment.ivSpinnerArrow = null;
|
||
|
customSchedulePayment.vSeparator = null;
|
||
|
customSchedulePayment.clickableSpinner = null;
|
||
|
this.e.setOnClickListener(null);
|
||
|
this.e = null;
|
||
|
}
|
||
|
}
|