8 lines
185 B
Java
8 lines
185 B
Java
|
package eu.siacs.conversations.xmpp;
|
||
|
|
||
|
import eu.siacs.conversations.entities.Contact;
|
||
|
|
||
|
public interface OnContactStatusChanged {
|
||
|
public void onContactStatusChanged(Contact contact);
|
||
|
}
|