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

70 lines
2.6 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.card.MaterialCardView;
public final class WidgetChoosePlanAdapterPlanItemBinding implements ViewBinding {
@NonNull
public final MaterialCardView a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final MaterialCardView f1753c;
@NonNull
public final TextView d;
@NonNull
public final ImageView e;
@NonNull
public final TextView f;
@NonNull
public final TextView g;
public WidgetChoosePlanAdapterPlanItemBinding(@NonNull MaterialCardView materialCardView, @NonNull ImageView imageView, @NonNull MaterialCardView materialCardView2, @NonNull TextView textView, @NonNull ImageView imageView2, @NonNull TextView textView2, @NonNull TextView textView3) {
this.a = materialCardView;
this.b = imageView;
this.f1753c = materialCardView2;
this.d = textView;
this.e = imageView2;
this.f = textView2;
this.g = textView3;
}
@NonNull
public static WidgetChoosePlanAdapterPlanItemBinding a(@NonNull View view) {
int i = 2131364267;
ImageView imageView = (ImageView) view.findViewById(2131364267);
if (imageView != null) {
MaterialCardView materialCardView = (MaterialCardView) view;
i = 2131364269;
TextView textView = (TextView) view.findViewById(2131364269);
if (textView != null) {
i = 2131364270;
ImageView imageView2 = (ImageView) view.findViewById(2131364270);
if (imageView2 != null) {
i = 2131364271;
TextView textView2 = (TextView) view.findViewById(2131364271);
if (textView2 != null) {
i = 2131364272;
TextView textView3 = (TextView) view.findViewById(2131364272);
if (textView3 != null) {
return new WidgetChoosePlanAdapterPlanItemBinding(materialCardView, imageView, materialCardView, textView, imageView2, 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;
}
}