parent
d0afa836ef
commit
42cbf6404b
@ -0,0 +1,99 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package net.micode.notes.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.NumberPicker;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
import net.micode.notes.R;
|
||||
|
||||
public final class DatetimePickerBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final NumberPicker amPm;
|
||||
|
||||
@NonNull
|
||||
public final NumberPicker date;
|
||||
|
||||
@NonNull
|
||||
public final NumberPicker hour;
|
||||
|
||||
@NonNull
|
||||
public final NumberPicker minute;
|
||||
|
||||
private DatetimePickerBinding(@NonNull LinearLayout rootView, @NonNull NumberPicker amPm,
|
||||
@NonNull NumberPicker date, @NonNull NumberPicker hour, @NonNull NumberPicker minute) {
|
||||
this.rootView = rootView;
|
||||
this.amPm = amPm;
|
||||
this.date = date;
|
||||
this.hour = hour;
|
||||
this.minute = minute;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.datetime_picker, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DatetimePickerBinding 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.amPm;
|
||||
NumberPicker amPm = ViewBindings.findChildViewById(rootView, id);
|
||||
if (amPm == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.date;
|
||||
NumberPicker date = ViewBindings.findChildViewById(rootView, id);
|
||||
if (date == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.hour;
|
||||
NumberPicker hour = ViewBindings.findChildViewById(rootView, id);
|
||||
if (hour == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.minute;
|
||||
NumberPicker minute = ViewBindings.findChildViewById(rootView, id);
|
||||
if (minute == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new DatetimePickerBinding((LinearLayout) rootView, amPm, date, hour, minute);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
Loading…
Reference in new issue