|
Jitsi: the OpenSource Java VoIP and Instant Messaging client. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.java.sip.communicator.impl.protocol.mock.MockContactGroup
public class MockContactGroup
A simple, straightforward mock implementation of the ContactGroup interface that can be manually created and filled and used in testing a MetaContactList service
| Constructor Summary | |
|---|---|
MockContactGroup(String groupName,
MockProvider parentProvider)
Creates a MockGroup with the specified name. |
|
| Method Summary | |
|---|---|
void |
addContact(MockContact contactToAdd)
Adds the specified contact to this group. |
void |
addSubgroup(MockContactGroup subgroup)
Adds the specified contact group to the contained by this group. |
boolean |
canContainSubgroups()
Determines whether the group may contain subgroups or not. |
Iterator<Contact> |
contacts()
Returns an Iterator over all contacts, member of this ContactGroup. |
int |
countContacts()
Returns the number of Contact members of this ContactGroup |
int |
countSubgroups()
Returns the number of subgroups contained by this ContactGroup. |
(package private) static String |
createNameFromUID(String uid)
Ugly but tricky conversion method. |
boolean |
equals(Object obj)
Indicates whether some other object is "equal to" this one which in terms of contact groups translates to having the equal names and matching subgroups and child contacts. |
MockContact |
findContactByID(String id)
Returns the contact with the specified id or null if no such contact exists. |
MockContactGroup |
findContactParent(MockContact mockContact)
Returns the group that is parent of the specified mockContact or null if no parent was found. |
MockContactGroup |
findGroupParent(MockContactGroup mockGroup)
Returns the group that is parent of the specified mockGroup or null if no parent was found. |
Contact |
getContact(String id)
Returns the Contact with the specified address or identifier. |
ContactGroup |
getGroup(int index)
Returns the subgroup with the specified index. |
ContactGroup |
getGroup(String groupName)
Returns the subgroup with the specified name. |
String |
getGroupName()
Returns the name of this group. |
ContactGroup |
getParentContactGroup()
Returns the contact group that currently contains this group or null if this is the root contact group. |
String |
getPersistentData()
Returns null as no persistent data is required and the contact address is sufficient for restoring the contact. |
ProtocolProviderService |
getProtocolProvider()
Returns the protocol provider that this group belongs to. |
String |
getUID()
Returns a String that uniquely represnets the group inside the current protocol. |
boolean |
isPersistent()
Determines whether or not this contact group is being stored by the server. |
boolean |
isResolved()
Determines whether or not this contact has been resolved against the server. |
void |
removeContact(MockContact contact)
Removes the specified contact from this group. |
void |
removeSubGroup(MockContactGroup subgroup)
Removes the specified contact group from the this group's subgroups. |
void |
setGroupName(String newGrpName)
Sets this group a new name. |
(package private) void |
setParentGroup(MockContactGroup parent)
Sets the group that is the new parent of this group |
void |
setResolved(boolean resolved)
Makes the group resolved or unresolved. |
Iterator<ContactGroup> |
subgroups()
Returns an iterator over the sub groups that this ContactGroup contains. |
String |
toString()
Returns a String representation of this group and the contacts it contains (may turn out to be a relatively long string). |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public MockContactGroup(String groupName,
MockProvider parentProvider)
groupName - the name of the group.parentProvider - the protocol provider that created this group.| Method Detail |
|---|
public boolean canContainSubgroups()
canContainSubgroups in interface ContactGrouppublic ProtocolProviderService getProtocolProvider()
getProtocolProvider in interface ContactGrouppublic Iterator<Contact> contacts()
contacts in interface ContactGrouppublic void addContact(MockContact contactToAdd)
contactToAdd - the MockContact to add to this group.public int countContacts()
countContacts in interface ContactGrouppublic int countSubgroups()
countSubgroups in interface ContactGrouppublic void addSubgroup(MockContactGroup subgroup)
subgroup - the MockContactGroup to add as a subgroup to this group.void setParentGroup(MockContactGroup parent)
parent - MockContactGrouppublic ContactGroup getParentContactGroup()
getParentContactGroup in interface ContactGrouppublic void removeSubGroup(MockContactGroup subgroup)
subgroup - the MockContactGroup subgroup to remove.public MockContactGroup findGroupParent(MockContactGroup mockGroup)
mockGroup - the group whose parent we're looking for.
public MockContactGroup findContactParent(MockContact mockContact)
mockContact - the contact whose parent we're looking for.
public Contact getContact(String id)
getContact in interface ContactGroupid - the addres or identifier of the Contact we are
looking for.
public ContactGroup getGroup(int index)
getGroup in interface ContactGroupindex - the index of the ContactGroup to retrieve.
public ContactGroup getGroup(String groupName)
getGroup in interface ContactGroupgroupName - the name of the ContactGroup to retrieve.
public String getGroupName()
getGroupName in interface ContactGrouppublic void setGroupName(String newGrpName)
newGrpName - a String containing the new name of this group.public Iterator<ContactGroup> subgroups()
subgroups in interface ContactGrouppublic void removeContact(MockContact contact)
contact - the MockContact to remove from this grouppublic MockContact findContactByID(String id)
id - the id of the contact we're looking for.
public String toString()
toString in class Objectpublic boolean isPersistent()
isPersistent in interface ContactGrouppublic String getPersistentData()
getPersistentData in interface ContactGrouppublic boolean isResolved()
isResolved in interface ContactGrouppublic void setResolved(boolean resolved)
resolved - true to make the group resolved; false to
make it unresolvedpublic String getUID()
getUID in interface ContactGroupstatic String createNameFromUID(String uid)
uid - the uid we'd like to get a name from
public boolean equals(Object obj)
equals in class Objectobj - the reference object with which to compare.
true if this contact group has the equal child
contacts and subgroups to those of the obj argument.
|
Jitsi: the OpenSource Java VoIP and Instant Messaging client. | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||