25 lines
		
	
	
		
			529 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			529 B
		
	
	
	
		
			Java
		
	
	
	
	
	
| 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);
 | |
| }
 |