Java Examples for org.codeaurora.ims.QtiCallConstants
The following java examples will help you to understand the usage of org.codeaurora.ims.QtiCallConstants. These source code samples are taken from different open source projects.
Example 1
| Project: frameworks_opt-master File: Phone.java View source code |
/* Validate the given extras if the call is for CS domain or not */
protected boolean shallDialOnCircuitSwitch(Bundle extras) {
return (extras != null && extras.getInt(QtiCallConstants.EXTRA_CALL_DOMAIN, QtiCallConstants.DOMAIN_AUTOMATIC) == QtiCallConstants.DOMAIN_CS);
}