Searched defs:ConferenceParticipant (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/telecomm/java/android/telecom/
H A DConferenceParticipant.java27 public class ConferenceParticipant implements Parcelable { class in inherits:Parcelable
53 * Creates an instance of {@code ConferenceParticipant}.
60 public ConferenceParticipant(Uri handle, String displayName, Uri endpoint, int state) { method in class:ConferenceParticipant
68 * Responsible for creating {@code ConferenceParticipant} objects for deserialized Parcels.
70 public static final Parcelable.Creator<ConferenceParticipant> CREATOR =
71 new Parcelable.Creator<ConferenceParticipant>() {
74 public ConferenceParticipant createFromParcel(Parcel source) {
80 return new ConferenceParticipant(handle, displayName, endpoint, state);
84 public ConferenceParticipant[] newArray(int size) {
85 return new ConferenceParticipant[siz
[all...]

Completed in 93 milliseconds