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