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

69 lines
2.9 KiB
Java

package com.discord.databinding;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.appcompat.widget.AppCompatImageView;
import androidx.viewbinding.ViewBinding;
import com.discord.views.typing.TypingDots;
import com.discord.widgets.botuikit.views.ButtonComponentView;
import com.facebook.drawee.view.SimpleDraweeView;
import com.google.android.material.button.MaterialButton;
import com.google.android.material.textview.MaterialTextView;
public final class WidgetChatListBotUiButtonComponentBinding implements ViewBinding {
@NonNull
public final ButtonComponentView a;
@NonNull
public final MaterialButton b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1750c;
@NonNull
public final MaterialTextView d;
@NonNull
public final AppCompatImageView e;
@NonNull
public final TypingDots f;
public WidgetChatListBotUiButtonComponentBinding(@NonNull ButtonComponentView buttonComponentView, @NonNull MaterialButton materialButton, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView, @NonNull AppCompatImageView appCompatImageView, @NonNull TypingDots typingDots) {
this.a = buttonComponentView;
this.b = materialButton;
this.f1750c = simpleDraweeView;
this.d = materialTextView;
this.e = appCompatImageView;
this.f = typingDots;
}
@NonNull
public static WidgetChatListBotUiButtonComponentBinding a(@NonNull View view) {
int i = 2131362194;
MaterialButton materialButton = (MaterialButton) view.findViewById(2131362194);
if (materialButton != null) {
i = 2131363028;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131363028);
if (simpleDraweeView != null) {
i = 2131363771;
MaterialTextView materialTextView = (MaterialTextView) view.findViewById(2131363771);
if (materialTextView != null) {
i = 2131363797;
AppCompatImageView appCompatImageView = (AppCompatImageView) view.findViewById(2131363797);
if (appCompatImageView != null) {
i = 2131363810;
TypingDots typingDots = (TypingDots) view.findViewById(2131363810);
if (typingDots != null) {
return new WidgetChatListBotUiButtonComponentBinding((ButtonComponentView) view, materialButton, simpleDraweeView, materialTextView, appCompatImageView, typingDots);
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}