parent
42cbf6404b
commit
ef0f434b50
@ -0,0 +1,58 @@
|
|||||||
|
// 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.EditText;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.viewbinding.ViewBinding;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class DialogEditTextBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final EditText rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final EditText etFolerName;
|
||||||
|
|
||||||
|
private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.etFolerName = etFolerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public EditText getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.dialog_edit_text, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding bind(@NonNull View rootView) {
|
||||||
|
if (rootView == null) {
|
||||||
|
throw new NullPointerException("rootView");
|
||||||
|
}
|
||||||
|
|
||||||
|
EditText etFolerName = (EditText) rootView;
|
||||||
|
|
||||||
|
return new DialogEditTextBinding((EditText) rootView, etFolerName);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue