001 package com.skype.api;
002
003 import com.skype.api.Contact;
004
005
006 public interface ContactListener {
007 /** This event gets called when there are changes to Contact properties defined in Contact.Property */
008 public void onPropertyChange(Contact object, Contact.Property p, int value, String svalue);
009 }