Adds the possibility to send message or call a specific contact resource (Requested by Mark Atwood and Bdale Garbee). Adds better formatting of tooltips and chat send via selector box.

cusax-fix
Yana Stamcheva 13 years ago
parent 88e6ee8b3d
commit 411fb465b8

@ -8,6 +8,7 @@
import java.io.*;
import java.net.*;
import java.util.*;
import net.java.sip.communicator.service.protocol.*;
@ -432,4 +433,26 @@ public String getStatusMessage()
{
return null;
}
/**
* Indicates if this contact supports resources.
*
* @return <tt>false</tt> to indicate that this contact doesn't support
* resources
*/
public boolean supportResources()
{
return false;
}
/**
* Returns a collection of resources supported by this contact or null
* if it doesn't support resources.
*
* @return null, as this contact doesn't support resources
*/
public Collection<ContactResource> getResources()
{
return null;
}
}

Loading…
Cancel
Save