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

48 lines
1.4 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.databinding;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
public final class UserProfileAdminViewBinding implements ViewBinding {
@NonNull
public final LinearLayout a;
@NonNull
2021-12-21 23:37:30 +00:00
/* renamed from: b reason: collision with root package name */
2022-02-10 03:03:45 +00:00
public final TextView f2146b;
2021-12-21 23:37:30 +00:00
@NonNull
public final TextView c;
2021-06-27 20:44:35 +00:00
@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;
2021-12-17 22:03:14 +00:00
@NonNull
public final TextView i;
2021-06-27 20:44:35 +00:00
2021-12-17 22:03:14 +00:00
public UserProfileAdminViewBinding(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull TextView textView2, @NonNull TextView textView3, @NonNull TextView textView4, @NonNull TextView textView5, @NonNull TextView textView6, @NonNull TextView textView7, @NonNull TextView textView8) {
2021-06-27 20:44:35 +00:00
this.a = linearLayout;
2022-02-10 03:03:45 +00:00
this.f2146b = textView;
2021-12-21 23:37:30 +00:00
this.c = textView2;
2021-06-27 20:44:35 +00:00
this.d = textView3;
this.e = textView4;
this.f = textView5;
this.g = textView6;
this.h = textView7;
2021-12-17 22:03:14 +00:00
this.i = textView8;
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}