adapt to api addons

This commit is contained in:
Simon Morlat 2010-10-26 11:13:29 +02:00
parent 728865a441
commit 4fb072b0a1
2 changed files with 25 additions and 0 deletions

View file

@ -68,4 +68,16 @@ public class LinphoneCoreFactoryImpl extends LinphoneCoreFactory {
//not implemented on Android
}
@Override
LinphoneFriend createLinphoneFriend(String friendUri) {
// TODO Auto-generated method stub
return null;
}
@Override
LinphoneFriend createLinphoneFriend() {
// TODO Auto-generated method stub
return null;
}
}

View file

@ -270,5 +270,18 @@ class LinphoneCoreImpl implements LinphoneCore {
public void stopDtmf() {
stopDtmf(nativePtr);
}
public void addFriend(LinphoneFriend lf) throws LinphoneCoreException {
// TODO Auto-generated method stub
}
public LinphoneChatRoom createChatRoom(String to) {
// TODO Auto-generated method stub
return null;
}
public void setPresenceInfo(int minuteAway, String alternativeContact,
OnlineStatus status) {
// TODO Auto-generated method stub
}
}