mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
15 lines
296 B
Java
15 lines
296 B
Java
|
package androidx.databinding;
|
||
|
|
||
|
import androidx.lifecycle.LifecycleOwner;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
interface ObservableReference<T> {
|
||
|
void addListener(T t);
|
||
|
|
||
|
WeakListener<T> getListener();
|
||
|
|
||
|
void removeListener(T t);
|
||
|
|
||
|
void setLifecycleOwner(LifecycleOwner lifecycleOwner);
|
||
|
}
|