mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
14 lines
296 B
Java
14 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);
|
|
}
|