Home
last modified time | relevance | path

Searched refs:participants (Results 1 – 2 of 2) sorted by relevance

/developers/samples/android/deprecated/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/model/
DChat.java30 private Map<String, Profile> participants; field in Chat
53 return participants; in getParticipants()
56 public void setParticipants(Map<String, Profile> participants) { in setParticipants() argument
57 this.participants = participants; in setParticipants()
64 for (Profile profile : participants.values()) { in generateAliasFromParticipants()
77 public void setParticipantsAndAlias(Map<String, Profile> participants) { in setParticipantsAndAlias() argument
78 setParticipants(participants); in setParticipantsAndAlias()
88 public void setParticipantsAndAlias(Map<String, Profile> participants, String alias) { in setParticipantsAndAlias() argument
89 setParticipants(participants); in setParticipantsAndAlias()
102 participants.put(participant.getId(), participant); in addParticipant()
[all …]
/developers/samples/android/deprecated/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/mock/
DMockDatabase.java63 public static Chat createChat(Context context, Collection<Profile> participants, Profile user) { in createChat() argument
64 int size = participants.size(); in createChat()
75 for (Profile profile : participants) { in createChat()