ADD week 5
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.google.android.material.timepicker;
|
||||
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
interface TimePickerControls {
|
||||
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface ActiveSelection {
|
||||
}
|
||||
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user