Back to project page Chopping.
The source code is released under:
Apache License
If you think the Android project Chopping listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.android.internal.telephony; //w w w. ja va2 s . c o m /** * For reflection on the {@link android.telephony.TelephonyManager} to reject incoming calls. * * @author Xinyue Zhao */ public interface ITelephony { /** * End call. * @return {@code true} if ok. */ boolean endCall(); /** * Answer call. * No used. */ void answerRingingCall(); /** * Make ring to silence. */ void silenceRinger(); }