discord-jadx/app/src/main/java/com/discord/databinding/WidgetAuthPhoneVerifyBindin...

50 lines
1.6 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.databinding;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import androidx.viewbinding.ViewBinding;
import com.discord.utilities.dimmer.DimmerView;
import com.discord.views.CodeVerificationView;
public final class WidgetAuthPhoneVerifyBinding implements ViewBinding {
@NonNull
public final CoordinatorLayout a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-13 20:23:20 +00:00
public final TextView f1681c;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
public final TextView d;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
public final CodeVerificationView e;
2021-06-27 20:44:35 +00:00
@NonNull
public final TextView f;
@NonNull
public final TextView g;
@NonNull
2021-07-03 23:36:06 +00:00
public final TextView h;
@NonNull
public final DimmerView i;
2021-06-27 20:44:35 +00:00
2021-07-03 23:36:06 +00:00
public WidgetAuthPhoneVerifyBinding(@NonNull CoordinatorLayout coordinatorLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull CodeVerificationView codeVerificationView, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull TextView textView6, @NonNull DimmerView dimmerView) {
2021-06-27 20:44:35 +00:00
this.a = coordinatorLayout;
this.b = textView;
2021-07-13 20:23:20 +00:00
this.f1681c = textView2;
2021-07-03 23:36:06 +00:00
this.d = textView3;
this.e = codeVerificationView;
2021-06-27 20:44:35 +00:00
this.f = textView4;
this.g = textView5;
2021-07-03 23:36:06 +00:00
this.h = textView6;
this.i = dimmerView;
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}