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

88 lines
3.7 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
public final class WidgetThreadArchiveActionsSheetBinding implements ViewBinding {
@NonNull
public final NestedScrollView a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final LinearLayout f1987c;
@NonNull
public final TextView d;
@NonNull
public final TextView e;
@NonNull
public final TextView f;
@NonNull
public final TextView g;
@NonNull
public final TextView h;
public WidgetThreadArchiveActionsSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull LinearLayout linearLayout, @NonNull LinearLayout linearLayout2, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull TextView textView6, @NonNull TextView textView7) {
this.a = nestedScrollView;
this.b = textView;
this.f1987c = linearLayout;
this.d = textView2;
this.e = textView3;
this.f = textView4;
this.g = textView5;
this.h = textView6;
}
@NonNull
public static WidgetThreadArchiveActionsSheetBinding a(@NonNull View view) {
int i = 2131361983;
TextView textView = (TextView) view.findViewById(2131361983);
if (textView != null) {
i = 2131362078;
LinearLayout linearLayout = (LinearLayout) view.findViewById(2131362078);
if (linearLayout != null) {
i = 2131362079;
LinearLayout linearLayout2 = (LinearLayout) view.findViewById(2131362079);
if (linearLayout2 != null) {
i = 2131364203;
TextView textView2 = (TextView) view.findViewById(2131364203);
if (textView2 != null) {
i = 2131364204;
TextView textView3 = (TextView) view.findViewById(2131364204);
if (textView3 != null) {
i = 2131364205;
TextView textView4 = (TextView) view.findViewById(2131364205);
if (textView4 != null) {
i = 2131364206;
TextView textView5 = (TextView) view.findViewById(2131364206);
if (textView5 != null) {
i = 2131365255;
TextView textView6 = (TextView) view.findViewById(2131365255);
if (textView6 != null) {
i = 2131365427;
TextView textView7 = (TextView) view.findViewById(2131365427);
if (textView7 != null) {
return new WidgetThreadArchiveActionsSheetBinding((NestedScrollView) view, textView, linearLayout, linearLayout2, textView2, textView3, textView4, textView5, textView6, textView7);
}
}
}
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}