mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
17 lines
359 B
Java
17 lines
359 B
Java
|
package androidx.constraintlayout.solver.state;
|
||
|
|
||
|
import androidx.constraintlayout.solver.widgets.ConstraintWidget;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface Reference {
|
||
|
void apply();
|
||
|
|
||
|
ConstraintWidget getConstraintWidget();
|
||
|
|
||
|
Object getKey();
|
||
|
|
||
|
void setConstraintWidget(ConstraintWidget constraintWidget);
|
||
|
|
||
|
void setKey(Object obj);
|
||
|
}
|