コード例 #1
0
ファイル: Call.java プロジェクト: leseroth/ingenium-managment
 /**
  * Return the status of sending video with this CALL.
  *
  * @return videoStatus of this call.
  * @throws SkypeException when connection is bad.
  */
 public VideoStatus getSendVideoStatus() throws SkypeException {
   return VideoStatus.valueOf(getProperty("VIDEO_SEND_STATUS"));
 }
コード例 #2
0
ファイル: Call.java プロジェクト: leseroth/ingenium-managment
 /**
  * Return the status of receiving video with this CALL.
  *
  * @return videoStatus of this call.
  * @throws SkypeException when connection is bad.
  */
 public VideoStatus getReceiveVideoStatus() throws SkypeException {
   return VideoStatus.valueOf(getProperty("VIDEO_RECEIVE_STATUS"));
 }