Implement Vibrator in Android

Hello,

Android offers a vibrator interface to create haptic effects when clicking a button.
This is actually quite easy to implement given the vibrator motors.

My Problem: How can I tell Android to use “my” vibrator implementation?
The invocation is like
Vibrator vibe = ( Vibrator ) getSystemService( VIBRATOR_SERVICE );
vibe.vibrate( durationMs );
But this seems a dead end as the VIM3 has no vibrator…

Thanks in advance