Home | History | Annotate | Download | only in telecom

Lines Matching refs:Details

102      * A call can only be in this state if the {@link Details#PROPERTY_IS_EXTERNAL_CALL} property
103 * and {@link Details#CAPABILITY_CAN_PULL_CALL} capability are set on the call.
118 public static class Details {
347 * Whether the capabilities of this {@code Details} supports the specified capability.
435 * Whether the properties of this {@code Details} includes the specified property.
593 if (o instanceof Details) {
594 Details d = (Details) o;
635 public Details(
669 public static Details createFromParcelableCall(ParcelableCall parcelableCall) {
670 return new Details(
748 * Invoked when the details of this {@code Call} have changed. See {@link #getDetails()}.
751 * @param details A {@code Details} object describing the {@code Call}.
753 public void onDetailsChanged(Call call, Details details) {}
848 private Details mDetails;
974 * Merges the calls within this conference. See {@link Details#CAPABILITY_MERGE_CONFERENCE}.
981 * Swaps the calls within this conference. See {@link Details#CAPABILITY_SWAP_CONFERENCE}.
992 * {@link Call.Details#PROPERTY_IS_EXTERNAL_CALL} property set.
1000 if (!mDetails.hasProperty(Details.PROPERTY_IS_EXTERNAL_CALL)) {
1215 * Obtains an object containing call details.
1217 * @return A {@link Details} object. Depending on the state of the {@code Call}, the
1220 public Details getDetails() {
1271 append(", details: ").
1356 Details details = Details.createFromParcelableCall(parcelableCall);
1357 boolean detailsChanged = !Objects.equals(mDetails, details);
1359 mDetails = details;
1504 private void fireDetailsChanged(final Details details) {
1511 callback.onDetailsChanged(call, details);