mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
17 lines
320 B
Java
17 lines
320 B
Java
|
package androidx.databinding;
|
||
|
|
||
|
import androidx.databinding.ViewDataBinding;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public abstract class OnRebindCallback<T extends ViewDataBinding> {
|
||
|
public void onBound(T t) {
|
||
|
}
|
||
|
|
||
|
public void onCanceled(T t) {
|
||
|
}
|
||
|
|
||
|
public boolean onPreBind(T t) {
|
||
|
return true;
|
||
|
}
|
||
|
}
|