Home | History | Annotate | Download | only in telecom

Lines Matching refs:Details

99     public static class Details {
217 if (o instanceof Details) {
218 Details d = (Details) o;
257 public Details(
313 * Invoked when the details of this {@code Call} have changed. See {@link #getDetails()}.
316 * @param details A {@code Details} object describing the {@code Call}.
318 public void onDetailsChanged(Call call, Details details) {}
389 private Details mDetails;
606 * Obtains an object containing call details.
608 * @return A {@link Details} object. Depending on the state of the {@code Call}, the
611 public Details getDetails() {
651 Details details = new Details(
665 boolean detailsChanged = !Objects.equals(mDetails, details);
667 mDetails = details;
782 private void fireDetailsChanged(Details details) {
784 listener.onDetailsChanged(this, details);