001 package com.skype.api;
002
003 import com.skype.api.ContactSearch;
004
005
006 public interface ContactSearchListener {
007 /** This event gets called when there are changes to ContactSearch properties defined in ContactSearch.Property */
008 public void onPropertyChange(ContactSearch object, ContactSearch.Property p, int value, String svalue);
009 /** This callback is fired when a new matching contact has been found during the search. * @param contact
010 * @param rankValue
011 */
012 public void onNewResult(ContactSearch object, Contact contact, int rankValue);
013 }