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

52 lines
2.0 KiB
Java

package com.discord.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import com.discord.R;
public final class ViewGuildRoleSubscriptionSectionHeaderItemBinding implements ViewBinding {
@NonNull
public final LinearLayout a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1728c;
public ViewGuildRoleSubscriptionSectionHeaderItemBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2) {
this.a = linearLayout;
this.b = textView;
this.f1728c = textView2;
}
@NonNull
public static ViewGuildRoleSubscriptionSectionHeaderItemBinding a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
View inflate = layoutInflater.inflate(R.layout.view_guild_role_subscription_section_header_item, viewGroup, false);
if (z2) {
viewGroup.addView(inflate);
}
int i = R.id.guild_role_subscription_section_description;
TextView textView = (TextView) inflate.findViewById(R.id.guild_role_subscription_section_description);
if (textView != null) {
i = R.id.guild_role_subscription_section_header;
TextView textView2 = (TextView) inflate.findViewById(R.id.guild_role_subscription_section_header);
if (textView2 != null) {
return new ViewGuildRoleSubscriptionSectionHeaderItemBinding((LinearLayout) inflate, textView, textView2);
}
}
throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}