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