mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
18 lines
515 B
Java
Generated
18 lines
515 B
Java
Generated
// Generated automatically from android.hardware.BatteryState for testing purposes
|
|
|
|
package android.hardware;
|
|
|
|
|
|
abstract public class BatteryState
|
|
{
|
|
public BatteryState(){}
|
|
public abstract boolean isPresent();
|
|
public abstract float getCapacity();
|
|
public abstract int getStatus();
|
|
public static int STATUS_CHARGING = 0;
|
|
public static int STATUS_DISCHARGING = 0;
|
|
public static int STATUS_FULL = 0;
|
|
public static int STATUS_NOT_CHARGING = 0;
|
|
public static int STATUS_UNKNOWN = 0;
|
|
}
|