Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
e1767e51
Commit
e1767e51
authored
Feb 16, 2011
by
Simon Morlat
Browse files
Merge branch 'master' of git.sv.gnu.org:/srv/git/linphone
parents
dbb30345
aab7de39
Changes
7
Hide whitespace changes
Inline
Side-by-side
java/common/org/linphone/core/LinphoneCall.java
View file @
e1767e51
...
...
@@ -24,7 +24,7 @@ import java.util.Vector;
* Object representing a Call. calls are created using {@link LinphoneCore#invite(LinphoneAddress)} or passed to the application by listener {@link LinphoneCoreListener#callState(LinphoneCore, LinphoneCall, State, String)}
*
*/
@SuppressWarnings
(
"unchecked"
)
public
interface
LinphoneCall
{
/**
* Linphone call states
...
...
java/common/org/linphone/core/LinphoneCallLog.java
View file @
e1767e51
...
...
@@ -24,7 +24,7 @@ package org.linphone.core;
import
java.util.Vector
;
@SuppressWarnings
(
"unchecked"
)
public
interface
LinphoneCallLog
{
/**
* Represents call status
...
...
java/common/org/linphone/core/LinphoneCore.java
View file @
e1767e51
...
...
@@ -25,7 +25,7 @@ import java.util.Vector;
* Linphone core main object created by method {@link LinphoneCoreFactory#createLinphoneCore(LinphoneCoreListener, String, String, Object)}.
*
*/
@SuppressWarnings
(
"unchecked"
)
public
interface
LinphoneCore
{
/**
* linphone core states
...
...
@@ -429,10 +429,17 @@ public interface LinphoneCore {
*/
public
boolean
isEchoCancellationEnabled
();
/**
* not implemented yet
* set transport used for signaling (TCP or UDP)
*
* @param aTransport
*/
public
void
setSignalingTransport
(
Transport
aTransport
);
/**
* get transport used for signaling (TCP or UDP)
*
* @return Transport;
*/
public
Transport
getSignalingTransport
();
/**
* not implemented
* @param value
...
...
java/common/org/linphone/core/LinphoneCoreFactory.java
View file @
e1767e51
...
...
@@ -21,7 +21,7 @@ package org.linphone.core;
@SuppressWarnings
(
"unchecked"
)
abstract
public
class
LinphoneCoreFactory
{
private
static
String
factoryName
=
"org.linphone.core.LinphoneCoreFactoryImpl"
;
...
...
java/common/org/linphone/core/LinphoneFriend.java
View file @
e1767e51
...
...
@@ -27,7 +27,7 @@ import java.util.Vector;
*
*
*/
@SuppressWarnings
(
"unchecked"
)
public
interface
LinphoneFriend
{
/**
* Enum controlling behavior for incoming subscription request.
...
...
java/common/org/linphone/core/OnlineStatus.java
View file @
e1767e51
...
...
@@ -25,7 +25,7 @@ import java.util.Vector;
* Enum describing remote friend status
*
*/
@SuppressWarnings
(
"unchecked"
)
public
class
OnlineStatus
{
static
private
Vector
values
=
new
Vector
();
...
...
java/common/org/linphone/core/VideoSize.java
View file @
e1767e51
...
...
@@ -78,7 +78,7 @@ public final class VideoSize {
return
true
;
}
@Override
public
String
toString
()
{
return
"width = "
+
width
+
" height = "
+
height
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment