Java tutorial
//package com.java2s; import android.bluetooth.BluetoothDevice; import java.lang.reflect.Method; public class Main { @SuppressWarnings({ "unchecked", "rawtypes" }) public static boolean cancelBondProcess(Class btClass, BluetoothDevice device) throws Exception { Method createBondMethod = btClass.getMethod("cancelBondProcess"); Boolean returnValue = (Boolean) createBondMethod.invoke(device); return returnValue.booleanValue(); } }