ja acabei

This commit is contained in:
2026-04-23 10:40:49 +01:00
parent a92e93bae3
commit 42bb2308a7
122 changed files with 2881 additions and 102 deletions

View File

@@ -25,6 +25,9 @@ public final class ItemAppointmentBinding implements ViewBinding {
@NonNull
public final TextView textReason;
@NonNull
public final TextView textStatus;
@NonNull
public final TextView textTime;
@@ -32,10 +35,12 @@ public final class ItemAppointmentBinding implements ViewBinding {
public final TextView textType;
private ItemAppointmentBinding(@NonNull MaterialCardView rootView, @NonNull TextView textDate,
@NonNull TextView textReason, @NonNull TextView textTime, @NonNull TextView textType) {
@NonNull TextView textReason, @NonNull TextView textStatus, @NonNull TextView textTime,
@NonNull TextView textType) {
this.rootView = rootView;
this.textDate = textDate;
this.textReason = textReason;
this.textStatus = textStatus;
this.textTime = textTime;
this.textType = textType;
}
@@ -79,6 +84,12 @@ public final class ItemAppointmentBinding implements ViewBinding {
break missingId;
}
id = R.id.text_status;
TextView textStatus = ViewBindings.findChildViewById(rootView, id);
if (textStatus == null) {
break missingId;
}
id = R.id.text_time;
TextView textTime = ViewBindings.findChildViewById(rootView, id);
if (textTime == null) {
@@ -91,8 +102,8 @@ public final class ItemAppointmentBinding implements ViewBinding {
break missingId;
}
return new ItemAppointmentBinding((MaterialCardView) rootView, textDate, textReason, textTime,
textType);
return new ItemAppointmentBinding((MaterialCardView) rootView, textDate, textReason,
textStatus, textTime, textType);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));