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