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

73 lines
2.7 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.cardview.widget.CardView;
import androidx.viewbinding.ViewBinding;
public final class WidgetGuildContextMenuBinding implements ViewBinding {
@NonNull
public final CardView a;
@NonNull
public final CardView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1807c;
@NonNull
public final TextView d;
@NonNull
public final TextView e;
@NonNull
public final TextView f;
@NonNull
public final TextView g;
public WidgetGuildContextMenuBinding(@NonNull CardView cardView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull View view, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5) {
this.a = cardView;
this.b = cardView2;
this.f1807c = textView;
this.d = textView2;
this.e = textView3;
this.f = textView4;
this.g = textView5;
}
@NonNull
public static WidgetGuildContextMenuBinding a(@NonNull View view) {
CardView cardView = (CardView) view;
int i = 2131363409;
TextView textView = (TextView) view.findViewById(2131363409);
if (textView != null) {
i = 2131363410;
View findViewById = view.findViewById(2131363410);
if (findViewById != null) {
i = 2131363411;
TextView textView2 = (TextView) view.findViewById(2131363411);
if (textView2 != null) {
i = 2131363412;
TextView textView3 = (TextView) view.findViewById(2131363412);
if (textView3 != null) {
i = 2131363413;
TextView textView4 = (TextView) view.findViewById(2131363413);
if (textView4 != null) {
i = 2131363414;
TextView textView5 = (TextView) view.findViewById(2131363414);
if (textView5 != null) {
return new WidgetGuildContextMenuBinding((CardView) view, cardView, textView, findViewById, textView2, textView3, textView4, textView5);
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}