mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
16 lines
359 B
Java
16 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);
|
|
}
|