Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
3f875141
Commit
3f875141
authored
14 years ago
by
jehan
Browse files
Options
Download
Patches
Plain Diff
add call status to java call logs
parent
55aa245f
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/common/org/linphone/core/LinphoneCallLog.java
+52
-0
java/common/org/linphone/core/LinphoneCallLog.java
with
52 additions
and
0 deletions
java/common/org/linphone/core/LinphoneCallLog.java
+
52
−
0
View file @
3f875141
...
...
@@ -18,12 +18,64 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package
org.linphone.core
;
import
java.util.Vector
;
public
interface
LinphoneCallLog
{
/**
* Represents call status
*
*/
static
class
CallStatus
{
static
private
Vector
values
=
new
Vector
();
private
final
int
mValue
;
private
final
String
mStringValue
;
/**
* Call success.
*/
public
final
static
CallStatus
Sucess
=
new
CallStatus
(
0
,
"Sucess"
);
/**
* Call aborted.
*/
public
final
static
CallStatus
Aborted
=
new
CallStatus
(
1
,
"Aborted"
);
/**
* missed incoming call.
*/
public
final
static
CallStatus
Missed
=
new
CallStatus
(
2
,
"Missed"
);
/**
* remote call declined.
*/
public
final
static
CallStatus
Declined
=
new
CallStatus
(
3
,
"Declined"
);
private
CallStatus
(
int
value
,
String
stringValue
)
{
mValue
=
value
;
values
.
addElement
(
this
);
mStringValue
=
stringValue
;
}
public
static
CallStatus
fromInt
(
int
value
)
{
for
(
int
i
=
0
;
i
<
values
.
size
();
i
++)
{
CallStatus
state
=
(
CallStatus
)
values
.
elementAt
(
i
);
if
(
state
.
mValue
==
value
)
return
state
;
}
throw
new
RuntimeException
(
"CallStatus not found ["
+
value
+
"]"
);
}
public
String
toString
()
{
return
mStringValue
;
}
public
int
toInt
()
{
return
mValue
;
}
}
public
LinphoneAddress
getFrom
();
public
LinphoneAddress
getTo
();
public
CallDirection
getDirection
();
/**
* get status of this call
* @return
*/
public
CallStatus
getStatus
();
}
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets