Commit 69fc4eec authored by Anjali W.M.S's avatar Anjali W.M.S

app build generated databinding files

parent fdeb8cf7
Pipeline #6362 canceled with stages
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import com.google.android.material.bottomnavigation.BottomNavigationView;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityAdhdhomeBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final BottomNavigationView bottomNav;
@NonNull
public final FrameLayout frameLayout;
private ActivityAdhdhomeBinding(@NonNull ConstraintLayout rootView,
@NonNull BottomNavigationView bottomNav, @NonNull FrameLayout frameLayout) {
this.rootView = rootView;
this.bottomNav = bottomNav;
this.frameLayout = frameLayout;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityAdhdhomeBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityAdhdhomeBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_adhdhome, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityAdhdhomeBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.bottomNav;
BottomNavigationView bottomNav = ViewBindings.findChildViewById(rootView, id);
if (bottomNav == null) {
break missingId;
}
id = R.id.frameLayout;
FrameLayout frameLayout = ViewBindings.findChildViewById(rootView, id);
if (frameLayout == null) {
break missingId;
}
return new ActivityAdhdhomeBinding((ConstraintLayout) rootView, bottomNav, frameLayout);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ListView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityDailyActivitiesBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final ListView listItems;
@NonNull
public final TextView txtBack;
@NonNull
public final TextView txtTitle;
@NonNull
public final TextView txtWeekNumber;
@NonNull
public final TextView txtWeekText;
private ActivityDailyActivitiesBinding(@NonNull ConstraintLayout rootView,
@NonNull ListView listItems, @NonNull TextView txtBack, @NonNull TextView txtTitle,
@NonNull TextView txtWeekNumber, @NonNull TextView txtWeekText) {
this.rootView = rootView;
this.listItems = listItems;
this.txtBack = txtBack;
this.txtTitle = txtTitle;
this.txtWeekNumber = txtWeekNumber;
this.txtWeekText = txtWeekText;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityDailyActivitiesBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityDailyActivitiesBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_daily_activities, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityDailyActivitiesBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.listItems;
ListView listItems = ViewBindings.findChildViewById(rootView, id);
if (listItems == null) {
break missingId;
}
id = R.id.txtBack;
TextView txtBack = ViewBindings.findChildViewById(rootView, id);
if (txtBack == null) {
break missingId;
}
id = R.id.txtTitle;
TextView txtTitle = ViewBindings.findChildViewById(rootView, id);
if (txtTitle == null) {
break missingId;
}
id = R.id.txtWeekNumber;
TextView txtWeekNumber = ViewBindings.findChildViewById(rootView, id);
if (txtWeekNumber == null) {
break missingId;
}
id = R.id.txtWeekText;
TextView txtWeekText = ViewBindings.findChildViewById(rootView, id);
if (txtWeekText == null) {
break missingId;
}
return new ActivityDailyActivitiesBinding((ConstraintLayout) rootView, listItems, txtBack,
txtTitle, txtWeekNumber, txtWeekText);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityDayBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final Button btnSave;
@NonNull
public final EditText editComment;
@NonNull
public final RadioButton radioButtonComplete;
@NonNull
public final RadioButton radioButtonInProgress;
@NonNull
public final RadioButton radioButtonNotComplete;
@NonNull
public final RadioGroup radioGroup;
@NonNull
public final TextView textWeekText;
@NonNull
public final TextView txtBack;
@NonNull
public final TextView txtTaskName;
@NonNull
public final TextView txtTaskText;
@NonNull
public final TextView txtTitle;
@NonNull
public final TextView txtWeekNumber;
private ActivityDayBinding(@NonNull ConstraintLayout rootView, @NonNull Button btnSave,
@NonNull EditText editComment, @NonNull RadioButton radioButtonComplete,
@NonNull RadioButton radioButtonInProgress, @NonNull RadioButton radioButtonNotComplete,
@NonNull RadioGroup radioGroup, @NonNull TextView textWeekText, @NonNull TextView txtBack,
@NonNull TextView txtTaskName, @NonNull TextView txtTaskText, @NonNull TextView txtTitle,
@NonNull TextView txtWeekNumber) {
this.rootView = rootView;
this.btnSave = btnSave;
this.editComment = editComment;
this.radioButtonComplete = radioButtonComplete;
this.radioButtonInProgress = radioButtonInProgress;
this.radioButtonNotComplete = radioButtonNotComplete;
this.radioGroup = radioGroup;
this.textWeekText = textWeekText;
this.txtBack = txtBack;
this.txtTaskName = txtTaskName;
this.txtTaskText = txtTaskText;
this.txtTitle = txtTitle;
this.txtWeekNumber = txtWeekNumber;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityDayBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityDayBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_day, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityDayBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.btnSave;
Button btnSave = ViewBindings.findChildViewById(rootView, id);
if (btnSave == null) {
break missingId;
}
id = R.id.editComment;
EditText editComment = ViewBindings.findChildViewById(rootView, id);
if (editComment == null) {
break missingId;
}
id = R.id.radioButtonComplete;
RadioButton radioButtonComplete = ViewBindings.findChildViewById(rootView, id);
if (radioButtonComplete == null) {
break missingId;
}
id = R.id.radioButtonInProgress;
RadioButton radioButtonInProgress = ViewBindings.findChildViewById(rootView, id);
if (radioButtonInProgress == null) {
break missingId;
}
id = R.id.radioButtonNotComplete;
RadioButton radioButtonNotComplete = ViewBindings.findChildViewById(rootView, id);
if (radioButtonNotComplete == null) {
break missingId;
}
id = R.id.radioGroup;
RadioGroup radioGroup = ViewBindings.findChildViewById(rootView, id);
if (radioGroup == null) {
break missingId;
}
id = R.id.textWeekText;
TextView textWeekText = ViewBindings.findChildViewById(rootView, id);
if (textWeekText == null) {
break missingId;
}
id = R.id.txtBack;
TextView txtBack = ViewBindings.findChildViewById(rootView, id);
if (txtBack == null) {
break missingId;
}
id = R.id.txtTaskName;
TextView txtTaskName = ViewBindings.findChildViewById(rootView, id);
if (txtTaskName == null) {
break missingId;
}
id = R.id.txtTaskText;
TextView txtTaskText = ViewBindings.findChildViewById(rootView, id);
if (txtTaskText == null) {
break missingId;
}
id = R.id.txtTitle;
TextView txtTitle = ViewBindings.findChildViewById(rootView, id);
if (txtTitle == null) {
break missingId;
}
id = R.id.txtWeekNumber;
TextView txtWeekNumber = ViewBindings.findChildViewById(rootView, id);
if (txtWeekNumber == null) {
break missingId;
}
return new ActivityDayBinding((ConstraintLayout) rootView, btnSave, editComment,
radioButtonComplete, radioButtonInProgress, radioButtonNotComplete, radioGroup,
textWeekText, txtBack, txtTaskName, txtTaskText, txtTitle, txtWeekNumber);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityLoginBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final Button btnLogin;
@NonNull
public final ConstraintLayout container;
@NonNull
public final EditText editTextEmail;
@NonNull
public final EditText editTextPass;
@NonNull
public final ImageView imageView17;
@NonNull
public final LinearLayout linearLayout4;
@NonNull
public final TextView textView23;
@NonNull
public final TextView textView53;
private ActivityLoginBinding(@NonNull ConstraintLayout rootView, @NonNull Button btnLogin,
@NonNull ConstraintLayout container, @NonNull EditText editTextEmail,
@NonNull EditText editTextPass, @NonNull ImageView imageView17,
@NonNull LinearLayout linearLayout4, @NonNull TextView textView23,
@NonNull TextView textView53) {
this.rootView = rootView;
this.btnLogin = btnLogin;
this.container = container;
this.editTextEmail = editTextEmail;
this.editTextPass = editTextPass;
this.imageView17 = imageView17;
this.linearLayout4 = linearLayout4;
this.textView23 = textView23;
this.textView53 = textView53;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_login, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityLoginBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.btn_login;
Button btnLogin = ViewBindings.findChildViewById(rootView, id);
if (btnLogin == null) {
break missingId;
}
ConstraintLayout container = (ConstraintLayout) rootView;
id = R.id.editTextEmail;
EditText editTextEmail = ViewBindings.findChildViewById(rootView, id);
if (editTextEmail == null) {
break missingId;
}
id = R.id.editTextPass;
EditText editTextPass = ViewBindings.findChildViewById(rootView, id);
if (editTextPass == null) {
break missingId;
}
id = R.id.imageView17;
ImageView imageView17 = ViewBindings.findChildViewById(rootView, id);
if (imageView17 == null) {
break missingId;
}
id = R.id.linearLayout4;
LinearLayout linearLayout4 = ViewBindings.findChildViewById(rootView, id);
if (linearLayout4 == null) {
break missingId;
}
id = R.id.textView23;
TextView textView23 = ViewBindings.findChildViewById(rootView, id);
if (textView23 == null) {
break missingId;
}
id = R.id.textView53;
TextView textView53 = ViewBindings.findChildViewById(rootView, id);
if (textView53 == null) {
break missingId;
}
return new ActivityLoginBinding((ConstraintLayout) rootView, btnLogin, container,
editTextEmail, editTextPass, imageView17, linearLayout4, textView23, textView53);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.ListView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityMedicineWeekActivitiesBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final ImageView imageView17;
@NonNull
public final ListView listItems;
@NonNull
public final TextView textView19;
@NonNull
public final TextView txtAHead;
@NonNull
public final TextView txtBack;
@NonNull
public final TextView txtDrugNameHead;
@NonNull
public final TextView txtMHead;
@NonNull
public final TextView txtNHead;
@NonNull
public final TextView txtWeekNumber;
@NonNull
public final TextView txtWeekText;
@NonNull
public final Button viewDailyButton;
private ActivityMedicineWeekActivitiesBinding(@NonNull ConstraintLayout rootView,
@NonNull ImageView imageView17, @NonNull ListView listItems, @NonNull TextView textView19,
@NonNull TextView txtAHead, @NonNull TextView txtBack, @NonNull TextView txtDrugNameHead,
@NonNull TextView txtMHead, @NonNull TextView txtNHead, @NonNull TextView txtWeekNumber,
@NonNull TextView txtWeekText, @NonNull Button viewDailyButton) {
this.rootView = rootView;
this.imageView17 = imageView17;
this.listItems = listItems;
this.textView19 = textView19;
this.txtAHead = txtAHead;
this.txtBack = txtBack;
this.txtDrugNameHead = txtDrugNameHead;
this.txtMHead = txtMHead;
this.txtNHead = txtNHead;
this.txtWeekNumber = txtWeekNumber;
this.txtWeekText = txtWeekText;
this.viewDailyButton = viewDailyButton;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityMedicineWeekActivitiesBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityMedicineWeekActivitiesBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_medicine_week_activities, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityMedicineWeekActivitiesBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.imageView17;
ImageView imageView17 = ViewBindings.findChildViewById(rootView, id);
if (imageView17 == null) {
break missingId;
}
id = R.id.listItems;
ListView listItems = ViewBindings.findChildViewById(rootView, id);
if (listItems == null) {
break missingId;
}
id = R.id.textView19;
TextView textView19 = ViewBindings.findChildViewById(rootView, id);
if (textView19 == null) {
break missingId;
}
id = R.id.txtAHead;
TextView txtAHead = ViewBindings.findChildViewById(rootView, id);
if (txtAHead == null) {
break missingId;
}
id = R.id.txtBack;
TextView txtBack = ViewBindings.findChildViewById(rootView, id);
if (txtBack == null) {
break missingId;
}
id = R.id.txtDrugNameHead;
TextView txtDrugNameHead = ViewBindings.findChildViewById(rootView, id);
if (txtDrugNameHead == null) {
break missingId;
}
id = R.id.txtMHead;
TextView txtMHead = ViewBindings.findChildViewById(rootView, id);
if (txtMHead == null) {
break missingId;
}
id = R.id.txtNHead;
TextView txtNHead = ViewBindings.findChildViewById(rootView, id);
if (txtNHead == null) {
break missingId;
}
id = R.id.txtWeekNumber;
TextView txtWeekNumber = ViewBindings.findChildViewById(rootView, id);
if (txtWeekNumber == null) {
break missingId;
}
id = R.id.txtWeekText;
TextView txtWeekText = ViewBindings.findChildViewById(rootView, id);
if (txtWeekText == null) {
break missingId;
}
id = R.id.viewDailyButton;
Button viewDailyButton = ViewBindings.findChildViewById(rootView, id);
if (viewDailyButton == null) {
break missingId;
}
return new ActivityMedicineWeekActivitiesBinding((ConstraintLayout) rootView, imageView17,
listItems, textView19, txtAHead, txtBack, txtDrugNameHead, txtMHead, txtNHead,
txtWeekNumber, txtWeekText, viewDailyButton);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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 androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class CommentListItemBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final TextView txtComment;
private CommentListItemBinding(@NonNull LinearLayout rootView, @NonNull TextView txtComment) {
this.rootView = rootView;
this.txtComment = txtComment;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static CommentListItemBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static CommentListItemBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.comment_list_item, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static CommentListItemBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.txtComment;
TextView txtComment = ViewBindings.findChildViewById(rootView, id);
if (txtComment == null) {
break missingId;
}
return new CommentListItemBinding((LinearLayout) rootView, txtComment);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ContentMainBinding implements ViewBinding {
@NonNull
private final RelativeLayout rootView;
@NonNull
public final RecyclerView recyclerMenu;
private ContentMainBinding(@NonNull RelativeLayout rootView, @NonNull RecyclerView recyclerMenu) {
this.rootView = rootView;
this.recyclerMenu = recyclerMenu;
}
@Override
@NonNull
public RelativeLayout getRoot() {
return rootView;
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.content_main, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ContentMainBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.recycler_menu;
RecyclerView recyclerMenu = ViewBindings.findChildViewById(rootView, id);
if (recyclerMenu == null) {
break missingId;
}
return new ContentMainBinding((RelativeLayout) rootView, recyclerMenu);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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 androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class DailyActivitiesListBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final TextView txtTaskText;
@NonNull
public final TextView txtTaskTitle;
private DailyActivitiesListBinding(@NonNull LinearLayout rootView, @NonNull TextView txtTaskText,
@NonNull TextView txtTaskTitle) {
this.rootView = rootView;
this.txtTaskText = txtTaskText;
this.txtTaskTitle = txtTaskTitle;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static DailyActivitiesListBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static DailyActivitiesListBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.daily_activities_list, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static DailyActivitiesListBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.txtTaskText;
TextView txtTaskText = ViewBindings.findChildViewById(rootView, id);
if (txtTaskText == null) {
break missingId;
}
id = R.id.txtTaskTitle;
TextView txtTaskTitle = ViewBindings.findChildViewById(rootView, id);
if (txtTaskTitle == null) {
break missingId;
}
return new DailyActivitiesListBinding((LinearLayout) rootView, txtTaskText, txtTaskTitle);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ListView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentMedicineBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final ListView listProducts;
@NonNull
public final TextView textView19;
private FragmentMedicineBinding(@NonNull FrameLayout rootView, @NonNull ListView listProducts,
@NonNull TextView textView19) {
this.rootView = rootView;
this.listProducts = listProducts;
this.textView19 = textView19;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentMedicineBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentMedicineBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_medicine, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentMedicineBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.listProducts;
ListView listProducts = ViewBindings.findChildViewById(rootView, id);
if (listProducts == null) {
break missingId;
}
id = R.id.textView19;
TextView textView19 = ViewBindings.findChildViewById(rootView, id);
if (textView19 == null) {
break missingId;
}
return new FragmentMedicineBinding((FrameLayout) rootView, listProducts, textView19);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentNewHomeBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final LinearLayout tileMedicines;
@NonNull
public final LinearLayout tilePrevReports;
@NonNull
public final TextView txtAppointment;
@NonNull
public final TextView txtNotification1;
@NonNull
public final TextView txtNotification2;
private FragmentNewHomeBinding(@NonNull FrameLayout rootView, @NonNull LinearLayout tileMedicines,
@NonNull LinearLayout tilePrevReports, @NonNull TextView txtAppointment,
@NonNull TextView txtNotification1, @NonNull TextView txtNotification2) {
this.rootView = rootView;
this.tileMedicines = tileMedicines;
this.tilePrevReports = tilePrevReports;
this.txtAppointment = txtAppointment;
this.txtNotification1 = txtNotification1;
this.txtNotification2 = txtNotification2;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentNewHomeBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentNewHomeBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_new_home, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentNewHomeBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.tileMedicines;
LinearLayout tileMedicines = ViewBindings.findChildViewById(rootView, id);
if (tileMedicines == null) {
break missingId;
}
id = R.id.tilePrevReports;
LinearLayout tilePrevReports = ViewBindings.findChildViewById(rootView, id);
if (tilePrevReports == null) {
break missingId;
}
id = R.id.txt_appointment;
TextView txtAppointment = ViewBindings.findChildViewById(rootView, id);
if (txtAppointment == null) {
break missingId;
}
id = R.id.txt_notification1;
TextView txtNotification1 = ViewBindings.findChildViewById(rootView, id);
if (txtNotification1 == null) {
break missingId;
}
id = R.id.txt_notification2;
TextView txtNotification2 = ViewBindings.findChildViewById(rootView, id);
if (txtNotification2 == null) {
break missingId;
}
return new FragmentNewHomeBinding((FrameLayout) rootView, tileMedicines, tilePrevReports,
txtAppointment, txtNotification1, txtNotification2);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentNotificationsBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final TextView textNotifications;
private FragmentNotificationsBinding(@NonNull ConstraintLayout rootView,
@NonNull TextView textNotifications) {
this.rootView = rootView;
this.textNotifications = textNotifications;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentNotificationsBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentNotificationsBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_notifications, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentNotificationsBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.text_notifications;
TextView textNotifications = ViewBindings.findChildViewById(rootView, id);
if (textNotifications == null) {
break missingId;
}
return new FragmentNotificationsBinding((ConstraintLayout) rootView, textNotifications);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import android.widget.FrameLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentProfileBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final Button btnSave;
@NonNull
public final Button btnSignOut;
@NonNull
public final EditText editTextAddress;
@NonNull
public final EditText editTextAge;
@NonNull
public final EditText editTextName;
@NonNull
public final EditText editTextRegisteredDate;
@NonNull
public final EditText editTextTelephone;
@NonNull
public final TextView txtVEditProfile;
private FragmentProfileBinding(@NonNull FrameLayout rootView, @NonNull Button btnSave,
@NonNull Button btnSignOut, @NonNull EditText editTextAddress, @NonNull EditText editTextAge,
@NonNull EditText editTextName, @NonNull EditText editTextRegisteredDate,
@NonNull EditText editTextTelephone, @NonNull TextView txtVEditProfile) {
this.rootView = rootView;
this.btnSave = btnSave;
this.btnSignOut = btnSignOut;
this.editTextAddress = editTextAddress;
this.editTextAge = editTextAge;
this.editTextName = editTextName;
this.editTextRegisteredDate = editTextRegisteredDate;
this.editTextTelephone = editTextTelephone;
this.txtVEditProfile = txtVEditProfile;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentProfileBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentProfileBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_profile, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentProfileBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.btnSave;
Button btnSave = ViewBindings.findChildViewById(rootView, id);
if (btnSave == null) {
break missingId;
}
id = R.id.btnSignOut;
Button btnSignOut = ViewBindings.findChildViewById(rootView, id);
if (btnSignOut == null) {
break missingId;
}
id = R.id.editTextAddress;
EditText editTextAddress = ViewBindings.findChildViewById(rootView, id);
if (editTextAddress == null) {
break missingId;
}
id = R.id.editTextAge;
EditText editTextAge = ViewBindings.findChildViewById(rootView, id);
if (editTextAge == null) {
break missingId;
}
id = R.id.editTextName;
EditText editTextName = ViewBindings.findChildViewById(rootView, id);
if (editTextName == null) {
break missingId;
}
id = R.id.editTextRegisteredDate;
EditText editTextRegisteredDate = ViewBindings.findChildViewById(rootView, id);
if (editTextRegisteredDate == null) {
break missingId;
}
id = R.id.editTextTelephone;
EditText editTextTelephone = ViewBindings.findChildViewById(rootView, id);
if (editTextTelephone == null) {
break missingId;
}
id = R.id.txtVEditProfile;
TextView txtVEditProfile = ViewBindings.findChildViewById(rootView, id);
if (txtVEditProfile == null) {
break missingId;
}
return new FragmentProfileBinding((FrameLayout) rootView, btnSave, btnSignOut,
editTextAddress, editTextAge, editTextName, editTextRegisteredDate, editTextTelephone,
txtVEditProfile);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ListView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import app.futured.donut.DonutProgressView;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentReportsBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final DonutProgressView dpvChart;
@NonNull
public final ListView listDoctorsCommentsWeek1;
@NonNull
public final ListView listDoctorsCommentsWeek2;
@NonNull
public final ListView listDoctorsCommentsWeek3;
@NonNull
public final ListView listDoctorsCommentsWeek4;
@NonNull
public final ListView listParentsCommentsWeek1;
@NonNull
public final ListView listParentsCommentsWeek2;
@NonNull
public final ListView listParentsCommentsWeek3;
@NonNull
public final ListView listParentsCommentsWeek4;
@NonNull
public final TextView txtMonth;
private FragmentReportsBinding(@NonNull FrameLayout rootView, @NonNull DonutProgressView dpvChart,
@NonNull ListView listDoctorsCommentsWeek1, @NonNull ListView listDoctorsCommentsWeek2,
@NonNull ListView listDoctorsCommentsWeek3, @NonNull ListView listDoctorsCommentsWeek4,
@NonNull ListView listParentsCommentsWeek1, @NonNull ListView listParentsCommentsWeek2,
@NonNull ListView listParentsCommentsWeek3, @NonNull ListView listParentsCommentsWeek4,
@NonNull TextView txtMonth) {
this.rootView = rootView;
this.dpvChart = dpvChart;
this.listDoctorsCommentsWeek1 = listDoctorsCommentsWeek1;
this.listDoctorsCommentsWeek2 = listDoctorsCommentsWeek2;
this.listDoctorsCommentsWeek3 = listDoctorsCommentsWeek3;
this.listDoctorsCommentsWeek4 = listDoctorsCommentsWeek4;
this.listParentsCommentsWeek1 = listParentsCommentsWeek1;
this.listParentsCommentsWeek2 = listParentsCommentsWeek2;
this.listParentsCommentsWeek3 = listParentsCommentsWeek3;
this.listParentsCommentsWeek4 = listParentsCommentsWeek4;
this.txtMonth = txtMonth;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentReportsBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentReportsBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_reports, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentReportsBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.dpvChart;
DonutProgressView dpvChart = ViewBindings.findChildViewById(rootView, id);
if (dpvChart == null) {
break missingId;
}
id = R.id.listDoctorsCommentsWeek1;
ListView listDoctorsCommentsWeek1 = ViewBindings.findChildViewById(rootView, id);
if (listDoctorsCommentsWeek1 == null) {
break missingId;
}
id = R.id.listDoctorsCommentsWeek2;
ListView listDoctorsCommentsWeek2 = ViewBindings.findChildViewById(rootView, id);
if (listDoctorsCommentsWeek2 == null) {
break missingId;
}
id = R.id.listDoctorsCommentsWeek3;
ListView listDoctorsCommentsWeek3 = ViewBindings.findChildViewById(rootView, id);
if (listDoctorsCommentsWeek3 == null) {
break missingId;
}
id = R.id.listDoctorsCommentsWeek4;
ListView listDoctorsCommentsWeek4 = ViewBindings.findChildViewById(rootView, id);
if (listDoctorsCommentsWeek4 == null) {
break missingId;
}
id = R.id.listParentsCommentsWeek1;
ListView listParentsCommentsWeek1 = ViewBindings.findChildViewById(rootView, id);
if (listParentsCommentsWeek1 == null) {
break missingId;
}
id = R.id.listParentsCommentsWeek2;
ListView listParentsCommentsWeek2 = ViewBindings.findChildViewById(rootView, id);
if (listParentsCommentsWeek2 == null) {
break missingId;
}
id = R.id.listParentsCommentsWeek3;
ListView listParentsCommentsWeek3 = ViewBindings.findChildViewById(rootView, id);
if (listParentsCommentsWeek3 == null) {
break missingId;
}
id = R.id.listParentsCommentsWeek4;
ListView listParentsCommentsWeek4 = ViewBindings.findChildViewById(rootView, id);
if (listParentsCommentsWeek4 == null) {
break missingId;
}
id = R.id.txtMonth;
TextView txtMonth = ViewBindings.findChildViewById(rootView, id);
if (txtMonth == null) {
break missingId;
}
return new FragmentReportsBinding((FrameLayout) rootView, dpvChart, listDoctorsCommentsWeek1,
listDoctorsCommentsWeek2, listDoctorsCommentsWeek3, listDoctorsCommentsWeek4,
listParentsCommentsWeek1, listParentsCommentsWeek2, listParentsCommentsWeek3,
listParentsCommentsWeek4, txtMonth);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class FragmentSlideshowBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final TextView textSlideshow;
private FragmentSlideshowBinding(@NonNull ConstraintLayout rootView,
@NonNull TextView textSlideshow) {
this.rootView = rootView;
this.textSlideshow = textSlideshow;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static FragmentSlideshowBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentSlideshowBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_slideshow, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentSlideshowBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.text_slideshow;
TextView textSlideshow = ViewBindings.findChildViewById(rootView, id);
if (textSlideshow == null) {
break missingId;
}
return new FragmentSlideshowBinding((ConstraintLayout) rootView, textSlideshow);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.databinding;
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 androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class MainNavDrawerBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final ImageView imgProfile;
@NonNull
public final TextView txtProfileName;
private MainNavDrawerBinding(@NonNull LinearLayout rootView, @NonNull ImageView imgProfile,
@NonNull TextView txtProfileName) {
this.rootView = rootView;
this.imgProfile = imgProfile;
this.txtProfileName = txtProfileName;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static MainNavDrawerBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static MainNavDrawerBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.main_nav_drawer, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static MainNavDrawerBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.imgProfile;
ImageView imgProfile = ViewBindings.findChildViewById(rootView, id);
if (imgProfile == null) {
break missingId;
}
id = R.id.txtProfileName;
TextView txtProfileName = ViewBindings.findChildViewById(rootView, id);
if (txtProfileName == null) {
break missingId;
}
return new MainNavDrawerBinding((LinearLayout) rootView, imgProfile, txtProfileName);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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 androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class MedicinesListWeekActivitiesBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final TextView txtA;
@NonNull
public final TextView txtDrugName;
@NonNull
public final TextView txtM;
@NonNull
public final TextView txtN;
private MedicinesListWeekActivitiesBinding(@NonNull LinearLayout rootView, @NonNull TextView txtA,
@NonNull TextView txtDrugName, @NonNull TextView txtM, @NonNull TextView txtN) {
this.rootView = rootView;
this.txtA = txtA;
this.txtDrugName = txtDrugName;
this.txtM = txtM;
this.txtN = txtN;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static MedicinesListWeekActivitiesBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static MedicinesListWeekActivitiesBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.medicines_list_week_activities, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static MedicinesListWeekActivitiesBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.txtA;
TextView txtA = ViewBindings.findChildViewById(rootView, id);
if (txtA == null) {
break missingId;
}
id = R.id.txtDrugName;
TextView txtDrugName = ViewBindings.findChildViewById(rootView, id);
if (txtDrugName == null) {
break missingId;
}
id = R.id.txtM;
TextView txtM = ViewBindings.findChildViewById(rootView, id);
if (txtM == null) {
break missingId;
}
id = R.id.txtN;
TextView txtN = ViewBindings.findChildViewById(rootView, id);
if (txtN == null) {
break missingId;
}
return new MedicinesListWeekActivitiesBinding((LinearLayout) rootView, txtA, txtDrugName,
txtM, txtN);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
// Generated by view binder compiler. Do not edit!
package com.example.salonappnew.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 androidx.viewbinding.ViewBindings;
import com.example.salonappnew.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class MedicinesListWeekBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final TextView txtWeekNumber;
@NonNull
public final TextView txtWeekText;
private MedicinesListWeekBinding(@NonNull LinearLayout rootView, @NonNull TextView txtWeekNumber,
@NonNull TextView txtWeekText) {
this.rootView = rootView;
this.txtWeekNumber = txtWeekNumber;
this.txtWeekText = txtWeekText;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static MedicinesListWeekBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static MedicinesListWeekBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.medicines_list_week, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static MedicinesListWeekBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.txtWeekNumber;
TextView txtWeekNumber = ViewBindings.findChildViewById(rootView, id);
if (txtWeekNumber == null) {
break missingId;
}
id = R.id.txtWeekText;
TextView txtWeekText = ViewBindings.findChildViewById(rootView, id);
if (txtWeekText == null) {
break missingId;
}
return new MedicinesListWeekBinding((LinearLayout) rootView, txtWeekNumber, txtWeekText);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment