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

40 lines
1.3 KiB
Java

package com.discord.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import com.discord.R;
import java.util.Objects;
public final class ViewGuildRoleSubscriptionSectionHeaderItemBinding implements ViewBinding {
@NonNull
public final TextView a;
@NonNull
public final TextView b;
public ViewGuildRoleSubscriptionSectionHeaderItemBinding(@NonNull TextView textView, @NonNull TextView textView2) {
this.a = textView;
this.b = 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);
}
Objects.requireNonNull(inflate, "rootView");
TextView textView = (TextView) inflate;
return new ViewGuildRoleSubscriptionSectionHeaderItemBinding(textView, textView);
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}