Update stubs

This commit is contained in:
Tony Torralba
2021-12-21 12:36:06 +01:00
parent 66794665f3
commit a59a4024a5
222 changed files with 7799 additions and 3572 deletions

View File

@@ -0,0 +1,20 @@
// Generated automatically from android.hardware.SensorDirectChannel for testing purposes
package android.hardware;
import android.hardware.Sensor;
import java.nio.channels.Channel;
public class SensorDirectChannel implements Channel
{
protected void finalize(){}
public boolean isOpen(){ return false; }
public int configure(Sensor p0, int p1){ return 0; }
public static int RATE_FAST = 0;
public static int RATE_NORMAL = 0;
public static int RATE_STOP = 0;
public static int RATE_VERY_FAST = 0;
public static int TYPE_HARDWARE_BUFFER = 0;
public static int TYPE_MEMORY_FILE = 0;
public void close(){}
}