(int rawKeyCode)
| 162 | } |
| 163 | |
| 164 | protected final void keyRepeated(int rawKeyCode){ |
| 165 | int keyCode = getKeyCode(rawKeyCode); |
| 166 | // TODO: uncomment to check motorola |
| 167 | //kHold = true; |
| 168 | //doKeyAction(keyCode); |
| 169 | //#ifdef LIGHT_CONFIG |
| 170 | //# CustomLight.keyPressed(); |
| 171 | //#endif |
| 172 | //#ifdef AUTOSTATUS |
| 173 | AutoStatus.getInstance().userActivity(Config.AWAY_IDLE); |
| 174 | //#endif |
| 175 | } |
| 176 | |
| 177 | protected final void keyReleased(int rawKeyCode) { |
| 178 | int keyCode = getKeyCode(rawKeyCode); |
nothing calls this directly
no test coverage detected