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

43 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.TextView;
import androidx.annotation.NonNull;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.switchmaterial.SwitchMaterial;
public final class WidgetVoiceSettingsBottomSheetBinding implements ViewBinding {
@NonNull
public final NestedScrollView a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-13 20:23:20 +00:00
public final SwitchMaterial f2021c;
2021-06-27 20:44:35 +00:00
@NonNull
public final TextView d;
@NonNull
public final TextView e;
@NonNull
public final SwitchMaterial f;
@NonNull
public final TextView g;
public WidgetVoiceSettingsBottomSheetBinding(@NonNull NestedScrollView nestedScrollView, @NonNull TextView textView, @NonNull SwitchMaterial switchMaterial, @NonNull TextView textView2, @NonNull NestedScrollView nestedScrollView2, @NonNull TextView textView3, @NonNull SwitchMaterial switchMaterial2, @NonNull TextView textView4) {
this.a = nestedScrollView;
this.b = textView;
2021-07-13 20:23:20 +00:00
this.f2021c = switchMaterial;
2021-06-27 20:44:35 +00:00
this.d = textView2;
this.e = textView3;
this.f = switchMaterial2;
this.g = textView4;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}