///////////////////////////////////////////////////////
| 102 | |
| 103 | //////////////////////////////////////////////////////////// |
| 104 | JniInputDevice::JniInputDevice( |
| 105 | JNIEnv& env, |
| 106 | jobject inputDevice, |
| 107 | jmethodID getNameMethod, |
| 108 | jmethodID getVendorIdMethod, |
| 109 | jmethodID getProductIdMethod, |
| 110 | jmethodID supportsSourceMethod, |
| 111 | jmethodID getMotionRangesMethod) : |
| 112 | m_env(env), |
| 113 | m_inputDevice(inputDevice), |
| 114 | m_getNameMethod(getNameMethod), |
| 115 | m_getVendorIdMethod(getVendorIdMethod), |
| 116 | m_getProductIdMethod(getProductIdMethod), |
| 117 | m_supportsSourceMethod(supportsSourceMethod), |
| 118 | m_getMotionRangesMethod(getMotionRangesMethod) |
| 119 | { |
| 120 | } |
| 121 | |
| 122 | |
| 123 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected