summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/hardware/VibratorHW.java
blob: 4f928c84f921fcb0a15166864250a6c2a837473c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.cyanogenmod.hardware;

public class VibratorHW {

    public static boolean isSupported() { return false; }

    public static int getMaxIntensity()  {
        return -1;
    }
    public static int getMinIntensity()  {
        return -1;
    }
    public static int getWarningThreshold()  {
        return -1;
    }
    public static int getCurIntensity()  {
        return -1;
    }
    public static boolean setIntensity(int intensity)  {
        throw new UnsupportedOperationException();
    }
    public static int getDefaultIntensity()  {
        return -1;
    }
}