mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
14 lines
435 B
Java
14 lines
435 B
Java
package androidx.databinding;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface Observable {
|
|
|
|
/* loaded from: classes.dex */
|
|
public static abstract class OnPropertyChangedCallback {
|
|
public abstract void onPropertyChanged(Observable sender, int propertyId);
|
|
}
|
|
|
|
void addOnPropertyChangedCallback(OnPropertyChangedCallback callback);
|
|
|
|
void removeOnPropertyChangedCallback(OnPropertyChangedCallback callback);
|
|
}
|