Home | History | Annotate | Download | only in telecom

Lines Matching refs:ConferenceParticipant

27 public class ConferenceParticipant implements Parcelable {
53 * Creates an instance of {@code ConferenceParticipant}.
60 public ConferenceParticipant(Uri handle, String displayName, Uri endpoint, int state) {
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[size];
95 * Writes the {@code ConferenceParticipant} to a parcel.
116 sb.append("[ConferenceParticipant Handle: ");