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

59 lines
2.0 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 WidgetFolderContextMenuBinding 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 f1791c;
@NonNull
public final TextView d;
@NonNull
public final TextView e;
public WidgetFolderContextMenuBinding(@NonNull CardView cardView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull View view, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = cardView;
this.b = cardView2;
this.f1791c = textView;
this.d = textView2;
this.e = textView3;
}
@NonNull
public static WidgetFolderContextMenuBinding a(@NonNull View view) {
CardView cardView = (CardView) view;
int i = 2131363274;
TextView textView = (TextView) view.findViewById(2131363274);
if (textView != null) {
i = 2131363275;
View findViewById = view.findViewById(2131363275);
if (findViewById != null) {
i = 2131363276;
TextView textView2 = (TextView) view.findViewById(2131363276);
if (textView2 != null) {
i = 2131363277;
TextView textView3 = (TextView) view.findViewById(2131363277);
if (textView3 != null) {
return new WidgetFolderContextMenuBinding((CardView) view, cardView, textView, findViewById, textView2, textView3);
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}