Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.ImageView;
|
||||
import androidx.appcompat.widget.LinearLayoutCompat;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class BottomSheetFiltersBinding {
|
||||
public final CheckBox filterAllInfo;
|
||||
public final CheckBox filterAllStations;
|
||||
public final ConstraintLayout observationsBottomsheet;
|
||||
private final LinearLayoutCompat rootView;
|
||||
public final ImageView sliderImageController;
|
||||
|
||||
private BottomSheetFiltersBinding(LinearLayoutCompat linearLayoutCompat, CheckBox checkBox, CheckBox checkBox2, ConstraintLayout constraintLayout, ImageView imageView) {
|
||||
this.rootView = linearLayoutCompat;
|
||||
this.filterAllInfo = checkBox;
|
||||
this.filterAllStations = checkBox2;
|
||||
this.observationsBottomsheet = constraintLayout;
|
||||
this.sliderImageController = imageView;
|
||||
}
|
||||
|
||||
public static BottomSheetFiltersBinding bind(View view) {
|
||||
int i = R.id.filter_all_info;
|
||||
CheckBox checkBox = (CheckBox) AbstractC0105a.t(view, i);
|
||||
if (checkBox != null) {
|
||||
i = R.id.filter_all_stations;
|
||||
CheckBox checkBox2 = (CheckBox) AbstractC0105a.t(view, i);
|
||||
if (checkBox2 != null) {
|
||||
i = R.id.observations_bottomsheet;
|
||||
ConstraintLayout constraintLayout = (ConstraintLayout) AbstractC0105a.t(view, i);
|
||||
if (constraintLayout != null) {
|
||||
i = R.id.sliderImageController;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
return new BottomSheetFiltersBinding((LinearLayoutCompat) view, checkBox, checkBox2, constraintLayout, imageView);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static BottomSheetFiltersBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static BottomSheetFiltersBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.bottom_sheet_filters, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public LinearLayoutCompat getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import com.adif.elcanomovil.commonViews.BottomSheetListView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class BottomSheetListBinding {
|
||||
public final BottomSheetListView listViewBtmSheet;
|
||||
private final LinearLayout rootView;
|
||||
|
||||
private BottomSheetListBinding(LinearLayout linearLayout, BottomSheetListView bottomSheetListView) {
|
||||
this.rootView = linearLayout;
|
||||
this.listViewBtmSheet = bottomSheetListView;
|
||||
}
|
||||
|
||||
public static BottomSheetListBinding bind(View view) {
|
||||
int i = R.id.listViewBtmSheet;
|
||||
BottomSheetListView bottomSheetListView = (BottomSheetListView) AbstractC0105a.t(view, i);
|
||||
if (bottomSheetListView != null) {
|
||||
return new BottomSheetListBinding((LinearLayout) view, bottomSheetListView);
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static BottomSheetListBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static BottomSheetListBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.bottom_sheet_list, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public LinearLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ButtonFullWidthBinding {
|
||||
private final View rootView;
|
||||
public final TextView text;
|
||||
|
||||
private ButtonFullWidthBinding(View view, TextView textView) {
|
||||
this.rootView = view;
|
||||
this.text = textView;
|
||||
}
|
||||
|
||||
public static ButtonFullWidthBinding bind(View view) {
|
||||
int i = R.id.text;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
return new ButtonFullWidthBinding(view, textView);
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ButtonFullWidthBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup) {
|
||||
if (viewGroup == null) {
|
||||
throw new NullPointerException("parent");
|
||||
}
|
||||
layoutInflater.inflate(R.layout.button_full_width, viewGroup);
|
||||
return bind(viewGroup);
|
||||
}
|
||||
|
||||
public View getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class CorporateCirculationInfoBinding {
|
||||
private final ConstraintLayout rootView;
|
||||
public final TextView tvCtc;
|
||||
public final TextView tvCtcLabel;
|
||||
public final TextView tvOper;
|
||||
public final TextView tvOperLabel;
|
||||
public final TextView tvPlan;
|
||||
public final TextView tvPlanLabel;
|
||||
public final TextView tvSitra;
|
||||
public final TextView tvSitraLabel;
|
||||
public final TextView tvTechnician;
|
||||
public final TextView tvTechnicianLabel;
|
||||
|
||||
private CorporateCirculationInfoBinding(ConstraintLayout constraintLayout, TextView textView, TextView textView2, TextView textView3, TextView textView4, TextView textView5, TextView textView6, TextView textView7, TextView textView8, TextView textView9, TextView textView10) {
|
||||
this.rootView = constraintLayout;
|
||||
this.tvCtc = textView;
|
||||
this.tvCtcLabel = textView2;
|
||||
this.tvOper = textView3;
|
||||
this.tvOperLabel = textView4;
|
||||
this.tvPlan = textView5;
|
||||
this.tvPlanLabel = textView6;
|
||||
this.tvSitra = textView7;
|
||||
this.tvSitraLabel = textView8;
|
||||
this.tvTechnician = textView9;
|
||||
this.tvTechnicianLabel = textView10;
|
||||
}
|
||||
|
||||
public static CorporateCirculationInfoBinding bind(View view) {
|
||||
int i = R.id.tv_ctc;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.tv_ctc_label;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
i = R.id.tv_oper;
|
||||
TextView textView3 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView3 != null) {
|
||||
i = R.id.tv_oper_label;
|
||||
TextView textView4 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView4 != null) {
|
||||
i = R.id.tv_plan;
|
||||
TextView textView5 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView5 != null) {
|
||||
i = R.id.tv_plan_label;
|
||||
TextView textView6 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView6 != null) {
|
||||
i = R.id.tv_sitra;
|
||||
TextView textView7 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView7 != null) {
|
||||
i = R.id.tv_sitra_label;
|
||||
TextView textView8 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView8 != null) {
|
||||
i = R.id.tv_technician;
|
||||
TextView textView9 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView9 != null) {
|
||||
i = R.id.tv_technician_label;
|
||||
TextView textView10 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView10 != null) {
|
||||
return new CorporateCirculationInfoBinding((ConstraintLayout) view, textView, textView2, textView3, textView4, textView5, textView6, textView7, textView8, textView9, textView10);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static CorporateCirculationInfoBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static CorporateCirculationInfoBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.corporate_circulation_info, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ProgressBar;
|
||||
import android.widget.TextView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class FragmentDialogLoadingBinding {
|
||||
public final LinearLayout containerDialog;
|
||||
public final TextView dialogMessage;
|
||||
public final ProgressBar progressBar2;
|
||||
private final LinearLayout rootView;
|
||||
|
||||
private FragmentDialogLoadingBinding(LinearLayout linearLayout, LinearLayout linearLayout2, TextView textView, ProgressBar progressBar) {
|
||||
this.rootView = linearLayout;
|
||||
this.containerDialog = linearLayout2;
|
||||
this.dialogMessage = textView;
|
||||
this.progressBar2 = progressBar;
|
||||
}
|
||||
|
||||
public static FragmentDialogLoadingBinding bind(View view) {
|
||||
LinearLayout linearLayout = (LinearLayout) view;
|
||||
int i = R.id.dialog_message;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.progressBar2;
|
||||
ProgressBar progressBar = (ProgressBar) AbstractC0105a.t(view, i);
|
||||
if (progressBar != null) {
|
||||
return new FragmentDialogLoadingBinding(linearLayout, linearLayout, textView, progressBar);
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static FragmentDialogLoadingBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static FragmentDialogLoadingBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.fragment_dialog_loading, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public LinearLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ItemCirculationDateBinding {
|
||||
private final TextView rootView;
|
||||
public final TextView widgetHeaderDate;
|
||||
|
||||
private ItemCirculationDateBinding(TextView textView, TextView textView2) {
|
||||
this.rootView = textView;
|
||||
this.widgetHeaderDate = textView2;
|
||||
}
|
||||
|
||||
public static ItemCirculationDateBinding bind(View view) {
|
||||
if (view == null) {
|
||||
throw new NullPointerException("rootView");
|
||||
}
|
||||
TextView textView = (TextView) view;
|
||||
return new ItemCirculationDateBinding(textView, textView);
|
||||
}
|
||||
|
||||
public static ItemCirculationDateBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ItemCirculationDateBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.item_circulation_date, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public TextView getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.RelativeLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ItemDataPlaceholderBinding {
|
||||
private final RelativeLayout rootView;
|
||||
public final View status;
|
||||
|
||||
private ItemDataPlaceholderBinding(RelativeLayout relativeLayout, View view) {
|
||||
this.rootView = relativeLayout;
|
||||
this.status = view;
|
||||
}
|
||||
|
||||
public static ItemDataPlaceholderBinding bind(View view) {
|
||||
int i = R.id.status;
|
||||
View t2 = AbstractC0105a.t(view, i);
|
||||
if (t2 != null) {
|
||||
return new ItemDataPlaceholderBinding((RelativeLayout) view, t2);
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ItemDataPlaceholderBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ItemDataPlaceholderBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.item_data_placeholder, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public RelativeLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ItemExplanationsBinding {
|
||||
public final ImageView icon;
|
||||
private final ConstraintLayout rootView;
|
||||
public final TextView title;
|
||||
|
||||
private ItemExplanationsBinding(ConstraintLayout constraintLayout, ImageView imageView, TextView textView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.icon = imageView;
|
||||
this.title = textView;
|
||||
}
|
||||
|
||||
public static ItemExplanationsBinding bind(View view) {
|
||||
int i = R.id.icon;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.title;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
return new ItemExplanationsBinding((ConstraintLayout) view, imageView, textView);
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ItemExplanationsBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ItemExplanationsBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.item_explanations, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ItemOptionBinding {
|
||||
public final ImageView arrowYellow;
|
||||
public final ImageView icon;
|
||||
private final ConstraintLayout rootView;
|
||||
public final TextView title;
|
||||
|
||||
private ItemOptionBinding(ConstraintLayout constraintLayout, ImageView imageView, ImageView imageView2, TextView textView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.arrowYellow = imageView;
|
||||
this.icon = imageView2;
|
||||
this.title = textView;
|
||||
}
|
||||
|
||||
public static ItemOptionBinding bind(View view) {
|
||||
int i = R.id.arrow_yellow;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.icon;
|
||||
ImageView imageView2 = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView2 != null) {
|
||||
i = R.id.title;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
return new ItemOptionBinding((ConstraintLayout) view, imageView, imageView2, textView);
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ItemOptionBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ItemOptionBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.item_option, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ProgressBar;
|
||||
import android.widget.TextView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class LoadingEmptyOrErrorCommonViewBinding {
|
||||
public final ImageView iconNoResults;
|
||||
public final ProgressBar loading;
|
||||
public final LinearLayout loadingOrError;
|
||||
public final TextView message;
|
||||
private final LinearLayout rootView;
|
||||
public final TextView title;
|
||||
|
||||
private LoadingEmptyOrErrorCommonViewBinding(LinearLayout linearLayout, ImageView imageView, ProgressBar progressBar, LinearLayout linearLayout2, TextView textView, TextView textView2) {
|
||||
this.rootView = linearLayout;
|
||||
this.iconNoResults = imageView;
|
||||
this.loading = progressBar;
|
||||
this.loadingOrError = linearLayout2;
|
||||
this.message = textView;
|
||||
this.title = textView2;
|
||||
}
|
||||
|
||||
public static LoadingEmptyOrErrorCommonViewBinding bind(View view) {
|
||||
int i = R.id.icon_no_results;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.loading;
|
||||
ProgressBar progressBar = (ProgressBar) AbstractC0105a.t(view, i);
|
||||
if (progressBar != null) {
|
||||
LinearLayout linearLayout = (LinearLayout) view;
|
||||
i = R.id.message;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.title;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
return new LoadingEmptyOrErrorCommonViewBinding(linearLayout, imageView, progressBar, linearLayout, textView, textView2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static LoadingEmptyOrErrorCommonViewBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static LoadingEmptyOrErrorCommonViewBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.loading_empty_or_error_common_view, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public LinearLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewBadgeBinding {
|
||||
public final ImageView badgeBackground;
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
private ViewBadgeBinding(ConstraintLayout constraintLayout, ImageView imageView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.badgeBackground = imageView;
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding bind(View view) {
|
||||
int i = R.id.badgeBackground;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
return new ViewBadgeBinding((ConstraintLayout) view, imageView);
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_badge, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.appcompat.widget.AppCompatImageView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewDayBinding {
|
||||
public final Button buttonOnclick;
|
||||
public final ConstraintLayout containerDayView;
|
||||
public final FrameLayout dayBackground;
|
||||
public final TextView dayTitle;
|
||||
public final AppCompatImageView disableView;
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
private ViewDayBinding(ConstraintLayout constraintLayout, Button button, ConstraintLayout constraintLayout2, FrameLayout frameLayout, TextView textView, AppCompatImageView appCompatImageView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.buttonOnclick = button;
|
||||
this.containerDayView = constraintLayout2;
|
||||
this.dayBackground = frameLayout;
|
||||
this.dayTitle = textView;
|
||||
this.disableView = appCompatImageView;
|
||||
}
|
||||
|
||||
public static ViewDayBinding bind(View view) {
|
||||
int i = R.id.button_onclick;
|
||||
Button button = (Button) AbstractC0105a.t(view, i);
|
||||
if (button != null) {
|
||||
ConstraintLayout constraintLayout = (ConstraintLayout) view;
|
||||
i = R.id.day_background;
|
||||
FrameLayout frameLayout = (FrameLayout) AbstractC0105a.t(view, i);
|
||||
if (frameLayout != null) {
|
||||
i = R.id.dayTitle;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.disableView;
|
||||
AppCompatImageView appCompatImageView = (AppCompatImageView) AbstractC0105a.t(view, i);
|
||||
if (appCompatImageView != null) {
|
||||
return new ViewDayBinding(constraintLayout, button, constraintLayout, frameLayout, textView, appCompatImageView);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewDayBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewDayBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_day, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewEmptySelectStationOrTrainBinding {
|
||||
public final ImageView icon;
|
||||
public final TextView message;
|
||||
private final LinearLayout rootView;
|
||||
public final TextView title;
|
||||
|
||||
private ViewEmptySelectStationOrTrainBinding(LinearLayout linearLayout, ImageView imageView, TextView textView, TextView textView2) {
|
||||
this.rootView = linearLayout;
|
||||
this.icon = imageView;
|
||||
this.message = textView;
|
||||
this.title = textView2;
|
||||
}
|
||||
|
||||
public static ViewEmptySelectStationOrTrainBinding bind(View view) {
|
||||
int i = R.id.icon;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.message;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.title;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
return new ViewEmptySelectStationOrTrainBinding((LinearLayout) view, imageView, textView, textView2);
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewEmptySelectStationOrTrainBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewEmptySelectStationOrTrainBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_empty_select_station_or_train, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public LinearLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,74 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewHeaderBinding {
|
||||
public final Button buttonClose;
|
||||
public final Button buttonOnback;
|
||||
public final ConstraintLayout containerView;
|
||||
public final TextView headerTitle;
|
||||
public final ImageView onBackIcon;
|
||||
public final ImageView onCloseIcon;
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
private ViewHeaderBinding(ConstraintLayout constraintLayout, Button button, Button button2, ConstraintLayout constraintLayout2, TextView textView, ImageView imageView, ImageView imageView2) {
|
||||
this.rootView = constraintLayout;
|
||||
this.buttonClose = button;
|
||||
this.buttonOnback = button2;
|
||||
this.containerView = constraintLayout2;
|
||||
this.headerTitle = textView;
|
||||
this.onBackIcon = imageView;
|
||||
this.onCloseIcon = imageView2;
|
||||
}
|
||||
|
||||
public static ViewHeaderBinding bind(View view) {
|
||||
int i = R.id.button_close;
|
||||
Button button = (Button) AbstractC0105a.t(view, i);
|
||||
if (button != null) {
|
||||
i = R.id.button_onback;
|
||||
Button button2 = (Button) AbstractC0105a.t(view, i);
|
||||
if (button2 != null) {
|
||||
ConstraintLayout constraintLayout = (ConstraintLayout) view;
|
||||
i = R.id.headerTitle;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.onBackIcon;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.onCloseIcon;
|
||||
ImageView imageView2 = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView2 != null) {
|
||||
return new ViewHeaderBinding(constraintLayout, button, button2, constraintLayout, textView, imageView, imageView2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewHeaderBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewHeaderBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_header, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewInfoBinding {
|
||||
public final Button actionButtonRetry;
|
||||
public final ConstraintLayout containerViewInfo;
|
||||
public final ImageView imageViewInfo;
|
||||
private final ConstraintLayout rootView;
|
||||
public final TextView textViewMsg;
|
||||
public final TextView textViewTitle;
|
||||
|
||||
private ViewInfoBinding(ConstraintLayout constraintLayout, Button button, ConstraintLayout constraintLayout2, ImageView imageView, TextView textView, TextView textView2) {
|
||||
this.rootView = constraintLayout;
|
||||
this.actionButtonRetry = button;
|
||||
this.containerViewInfo = constraintLayout2;
|
||||
this.imageViewInfo = imageView;
|
||||
this.textViewMsg = textView;
|
||||
this.textViewTitle = textView2;
|
||||
}
|
||||
|
||||
public static ViewInfoBinding bind(View view) {
|
||||
int i = R.id.action_button_retry;
|
||||
Button button = (Button) AbstractC0105a.t(view, i);
|
||||
if (button != null) {
|
||||
ConstraintLayout constraintLayout = (ConstraintLayout) view;
|
||||
i = R.id.imageViewInfo;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.textViewMsg;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.textViewTitle;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
return new ViewInfoBinding(constraintLayout, button, constraintLayout, imageView, textView, textView2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewInfoBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewInfoBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_info, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.RadioButton;
|
||||
import android.widget.RadioGroup;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewRadiogroupTraintypeBinding {
|
||||
public final RadioButton cercanias;
|
||||
public final RadioGroup group;
|
||||
private final View rootView;
|
||||
public final RadioButton trains;
|
||||
|
||||
private ViewRadiogroupTraintypeBinding(View view, RadioButton radioButton, RadioGroup radioGroup, RadioButton radioButton2) {
|
||||
this.rootView = view;
|
||||
this.cercanias = radioButton;
|
||||
this.group = radioGroup;
|
||||
this.trains = radioButton2;
|
||||
}
|
||||
|
||||
public static ViewRadiogroupTraintypeBinding bind(View view) {
|
||||
int i = R.id.cercanias;
|
||||
RadioButton radioButton = (RadioButton) AbstractC0105a.t(view, i);
|
||||
if (radioButton != null) {
|
||||
i = R.id.group;
|
||||
RadioGroup radioGroup = (RadioGroup) AbstractC0105a.t(view, i);
|
||||
if (radioGroup != null) {
|
||||
i = R.id.trains;
|
||||
RadioButton radioButton2 = (RadioButton) AbstractC0105a.t(view, i);
|
||||
if (radioButton2 != null) {
|
||||
return new ViewRadiogroupTraintypeBinding(view, radioButton, radioGroup, radioButton2);
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewRadiogroupTraintypeBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup) {
|
||||
if (viewGroup == null) {
|
||||
throw new NullPointerException("parent");
|
||||
}
|
||||
layoutInflater.inflate(R.layout.view_radiogroup_traintype, viewGroup);
|
||||
return bind(viewGroup);
|
||||
}
|
||||
|
||||
public View getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewStationOptionBinding {
|
||||
private final ConstraintLayout rootView;
|
||||
public final View stationOptionDisabledView;
|
||||
public final TextView stationOptionDistance;
|
||||
public final ImageView stationOptionIcon;
|
||||
public final TextView stationOptionSubtitle;
|
||||
public final TextView stationOptionTitle;
|
||||
|
||||
private ViewStationOptionBinding(ConstraintLayout constraintLayout, View view, TextView textView, ImageView imageView, TextView textView2, TextView textView3) {
|
||||
this.rootView = constraintLayout;
|
||||
this.stationOptionDisabledView = view;
|
||||
this.stationOptionDistance = textView;
|
||||
this.stationOptionIcon = imageView;
|
||||
this.stationOptionSubtitle = textView2;
|
||||
this.stationOptionTitle = textView3;
|
||||
}
|
||||
|
||||
public static ViewStationOptionBinding bind(View view) {
|
||||
int i = R.id.stationOptionDisabledView;
|
||||
View t2 = AbstractC0105a.t(view, i);
|
||||
if (t2 != null) {
|
||||
i = R.id.stationOptionDistance;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.stationOptionIcon;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.stationOptionSubtitle;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
i = R.id.stationOptionTitle;
|
||||
TextView textView3 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView3 != null) {
|
||||
return new ViewStationOptionBinding((ConstraintLayout) view, t2, textView, imageView, textView2, textView3);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewStationOptionBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewStationOptionBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_station_option, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewTrainOptionBinding {
|
||||
private final ConstraintLayout rootView;
|
||||
public final TextView trainOptionFrom;
|
||||
public final TextView trainOptionFromStation;
|
||||
public final TextView trainOptionFromStationTime;
|
||||
public final ImageView trainOptionIcon;
|
||||
public final TextView trainOptionNumber;
|
||||
public final TextView trainOptionTitle;
|
||||
public final TextView trainOptionTo;
|
||||
public final TextView trainOptionToStation;
|
||||
public final TextView trainOptionToStationTime;
|
||||
|
||||
private ViewTrainOptionBinding(ConstraintLayout constraintLayout, TextView textView, TextView textView2, TextView textView3, ImageView imageView, TextView textView4, TextView textView5, TextView textView6, TextView textView7, TextView textView8) {
|
||||
this.rootView = constraintLayout;
|
||||
this.trainOptionFrom = textView;
|
||||
this.trainOptionFromStation = textView2;
|
||||
this.trainOptionFromStationTime = textView3;
|
||||
this.trainOptionIcon = imageView;
|
||||
this.trainOptionNumber = textView4;
|
||||
this.trainOptionTitle = textView5;
|
||||
this.trainOptionTo = textView6;
|
||||
this.trainOptionToStation = textView7;
|
||||
this.trainOptionToStationTime = textView8;
|
||||
}
|
||||
|
||||
public static ViewTrainOptionBinding bind(View view) {
|
||||
int i = R.id.trainOptionFrom;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
i = R.id.trainOptionFromStation;
|
||||
TextView textView2 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView2 != null) {
|
||||
i = R.id.trainOptionFromStationTime;
|
||||
TextView textView3 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView3 != null) {
|
||||
i = R.id.trainOptionIcon;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
i = R.id.trainOptionNumber;
|
||||
TextView textView4 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView4 != null) {
|
||||
i = R.id.trainOptionTitle;
|
||||
TextView textView5 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView5 != null) {
|
||||
i = R.id.trainOptionTo;
|
||||
TextView textView6 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView6 != null) {
|
||||
i = R.id.trainOptionToStation;
|
||||
TextView textView7 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView7 != null) {
|
||||
i = R.id.trainOptionToStationTime;
|
||||
TextView textView8 = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView8 != null) {
|
||||
return new ViewTrainOptionBinding((ConstraintLayout) view, textView, textView2, textView3, imageView, textView4, textView5, textView6, textView7, textView8);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewTrainOptionBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewTrainOptionBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_train_option, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.TextView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
import com.adif.elcanomovil.commonViews.StationOptionView;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewUserStationsBinding {
|
||||
public final ConstraintLayout layoutHeader;
|
||||
private final ConstraintLayout rootView;
|
||||
public final StationOptionView userStationHome;
|
||||
public final StationOptionView userStationWork;
|
||||
public final ImageButton userStationsActionMore;
|
||||
public final TextView userStationsTitle;
|
||||
|
||||
private ViewUserStationsBinding(ConstraintLayout constraintLayout, ConstraintLayout constraintLayout2, StationOptionView stationOptionView, StationOptionView stationOptionView2, ImageButton imageButton, TextView textView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.layoutHeader = constraintLayout2;
|
||||
this.userStationHome = stationOptionView;
|
||||
this.userStationWork = stationOptionView2;
|
||||
this.userStationsActionMore = imageButton;
|
||||
this.userStationsTitle = textView;
|
||||
}
|
||||
|
||||
public static ViewUserStationsBinding bind(View view) {
|
||||
int i = R.id.layoutHeader;
|
||||
ConstraintLayout constraintLayout = (ConstraintLayout) AbstractC0105a.t(view, i);
|
||||
if (constraintLayout != null) {
|
||||
i = R.id.userStationHome;
|
||||
StationOptionView stationOptionView = (StationOptionView) AbstractC0105a.t(view, i);
|
||||
if (stationOptionView != null) {
|
||||
i = R.id.userStationWork;
|
||||
StationOptionView stationOptionView2 = (StationOptionView) AbstractC0105a.t(view, i);
|
||||
if (stationOptionView2 != null) {
|
||||
i = R.id.userStationsActionMore;
|
||||
ImageButton imageButton = (ImageButton) AbstractC0105a.t(view, i);
|
||||
if (imageButton != null) {
|
||||
i = R.id.userStationsTitle;
|
||||
TextView textView = (TextView) AbstractC0105a.t(view, i);
|
||||
if (textView != null) {
|
||||
return new ViewUserStationsBinding((ConstraintLayout) view, constraintLayout, stationOptionView, stationOptionView2, imageButton, textView);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewUserStationsBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewUserStationsBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_user_stations, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user