fix unimplemented method

This commit is contained in:
Jehan Monnier 2010-12-06 12:16:23 +01:00
parent 9ea5e89458
commit 6def7d6ac3
3 changed files with 10 additions and 0 deletions

View file

@ -61,6 +61,9 @@ class LinphoneCallImpl implements LinphoneCall {
public LinphoneCallParams getCurrentParamsReadOnly() {
throw new RuntimeException("Not Implemenetd yet");
}
public void enableCamera(boolean enabled) {
throw new RuntimeException("Not Implemenetd yet");
}
}

View file

@ -359,6 +359,9 @@ class LinphoneCoreImpl implements LinphoneCore {
public VideoSize getPreferredVideoSize() {
throw new RuntimeException("Not Implemenetd yet");
}
public PayloadType[] listVideoCodecs() {
throw new RuntimeException("Not Implemenetd yet");
}
}

View file

@ -31,4 +31,8 @@ class PayloadTypeImpl implements PayloadType {
public String toString() {
return toString(nativePtr);
}
public String getMime() {
throw new RuntimeException("Not Implemenetd yet");
}
}