mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
27 lines
602 B
Java
27 lines
602 B
Java
|
package com.google.android.material.timepicker;
|
||
|
|
||
|
import java.lang.annotation.Retention;
|
||
|
import java.lang.annotation.RetentionPolicy;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
interface TimePickerControls {
|
||
|
|
||
|
@Retention(RetentionPolicy.SOURCE)
|
||
|
/* loaded from: classes2.dex */
|
||
|
public @interface ActiveSelection {
|
||
|
}
|
||
|
|
||
|
@Retention(RetentionPolicy.SOURCE)
|
||
|
/* loaded from: classes2.dex */
|
||
|
public @interface ClockPeriod {
|
||
|
}
|
||
|
|
||
|
void setActiveSelection(int i);
|
||
|
|
||
|
void setHandRotation(float f);
|
||
|
|
||
|
void setValues(String[] strArr, int i);
|
||
|
|
||
|
void updateTime(int i, int i2, int i3);
|
||
|
}
|