8 lines
201 B
Java
8 lines
201 B
Java
![]() |
package eu.siacs.conversations.xmpp;
|
||
|
|
||
|
import eu.siacs.conversations.entities.Contact;
|
||
|
|
||
|
public interface OnContactStatusChanged {
|
||
|
public void onContactStatusChanged(Contact contact, boolean online);
|
||
|
}
|