mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
17 lines
502 B
Java
Generated
17 lines
502 B
Java
Generated
// Generated automatically from android.hardware.lights.LightsRequest for testing purposes
|
|
|
|
package android.hardware.lights;
|
|
|
|
import android.hardware.lights.Light;
|
|
import android.hardware.lights.LightState;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class LightsRequest
|
|
{
|
|
protected LightsRequest() {}
|
|
public List<Integer> getLights(){ return null; }
|
|
public List<LightState> getLightStates(){ return null; }
|
|
public Map<Light, LightState> getLightsAndStates(){ return null; }
|
|
}
|