add new LinphoneCallState in java

This commit is contained in:
Simon Morlat 2011-02-01 12:08:17 +01:00
parent 6fdd6a3ef0
commit cb7e67278a

View file

@ -110,7 +110,11 @@ public interface LinphoneCall {
* The remote accepted the call update initiated by us
*/
public static final State CallUpdated = new State(17, "CallUpdated");
/**
* The call object is now released.
*/
public static final State CallReleased = new State(18,"CallReleased");
private State(int value,String stringValue) {
mValue = value;