]> sjero.net Git - linphone/commitdiff
Fix java tutorials
authorSylvain Berfini <Sylvain.Berfini@Belledonne-Communications.com>
Thu, 28 Jun 2012 12:38:16 +0000 (14:38 +0200)
committerSylvain Berfini <Sylvain.Berfini@Belledonne-Communications.com>
Thu, 28 Jun 2012 12:38:16 +0000 (14:38 +0200)
coreapi/help/java/org/linphone/core/tutorials/TutorialBuddyStatus.java
coreapi/help/java/org/linphone/core/tutorials/TutorialChatRoom.java
coreapi/help/java/org/linphone/core/tutorials/TutorialHelloWorld.java
coreapi/help/java/org/linphone/core/tutorials/TutorialRegistration.java

index e7db170b86e719cb9a7450a919929e66aafe8d96..58a75e56be2b6a408db286f444313860dcaccddf 100644 (file)
@@ -98,6 +98,7 @@ public class TutorialBuddyStatus implements LinphoneCoreListener {
        public void callState(LinphoneCore lc, LinphoneCall call, State cstate, String msg) {}
        public void ecCalibrationStatus(LinphoneCore lc, EcCalibratorStatus status,int delay_ms, Object data) {}
        public void callEncryptionChanged(LinphoneCore lc, LinphoneCall call,boolean encrypted, String authenticationToken) {}
+       public void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event){}
 
 
        public static void main(String[] args) {
index 5837876cb0ceececd85551b61250288ecaf8dbfd..c81823e8a66b0bdb3a8d01e746f40882c7a9f701 100644 (file)
@@ -76,6 +76,7 @@ public class TutorialChatRoom implements LinphoneCoreListener {
        public void callState(LinphoneCore lc, LinphoneCall call, State cstate, String msg){}
        public void ecCalibrationStatus(LinphoneCore lc, EcCalibratorStatus status,int delay_ms, Object data) {}
        public void callEncryptionChanged(LinphoneCore lc, LinphoneCall call,boolean encrypted, String authenticationToken) {}
+       public void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event){}
        
        public void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from, String message) {
         write("Message ["+message+"] received from ["+from.asString()+"]");
index 30510fd84f6fafc61203d1877d79025fc216acdb..6daa65711f0f2e8c96aaac375f1b64ded179df0c 100644 (file)
@@ -70,7 +70,7 @@ public class TutorialHelloWorld implements LinphoneCoreListener {
        public void textReceived(LinphoneCore lc, LinphoneChatRoom cr,LinphoneAddress from, String message) {}
        public void ecCalibrationStatus(LinphoneCore lc, EcCalibratorStatus status,int delay_ms, Object data) {}
        public void callEncryptionChanged(LinphoneCore lc, LinphoneCall call,boolean encrypted, String authenticationToken) {}
-
+       public void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event){}
        /*
         * Call state notification listener
         */
index 8af45162cd2e3c7b3ec241989c29b34c45c0f477..674044471ce76e1f9b1af867586aedb28e6835b7 100644 (file)
@@ -81,6 +81,7 @@ public class TutorialRegistration implements LinphoneCoreListener {
        public void callState(LinphoneCore lc, LinphoneCall call, State cstate, String msg) {}
        public void ecCalibrationStatus(LinphoneCore lc, EcCalibratorStatus status,int delay_ms, Object data) {}
        public void callEncryptionChanged(LinphoneCore lc, LinphoneCall call,boolean encrypted, String authenticationToken) {}
+       public void notifyReceived(LinphoneCore lc, LinphoneCall call, LinphoneAddress from, byte[] event){}
 
        public static void main(String[] args) {
                // Check tutorial was called with the right number of arguments