2014-05-23 08:54:40 +00:00
|
|
|
package eu.siacs.conversations.xmpp;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
|
|
|
|
public interface OnContactStatusChanged {
|
2014-06-12 08:41:47 +00:00
|
|
|
public void onContactStatusChanged(Contact contact, boolean online);
|
2014-05-23 08:54:40 +00:00
|
|
|
}
|