001 package com.skype.api;
002
003 import com.skype.api.Participant;
004 import com.skype.api.Participant;
005
006
007 public interface ParticipantListener {
008 /** This event gets called when there are changes to Participant properties defined in Participant.Property */
009 public void onPropertyChange(Participant object, Participant.Property p, int value, String svalue);
010 /** This event gets fired on receiving a DTMF signal sent by Participant. Note that this event will only fire if the Participant is also using a Skype client. Skype audio library does not monitor incoming voice streams for dial tones. DTMF events are propagated to remote participants via data channel. Incoming DTMF tones transmitted from, for example, mobile phones, will not cause this event to fire. In case of incoming DTMF signals from Skype clients, DTMF tones are also inserted into the audio stream. You don't have to inject those into local audio playback yourself. * @param dtmf Returns Participant.DTMF value.
011 */
012 public void onIncomingDtmf(Participant object, Participant.Dtmf dtmf);
013 }