예제 #1
0
파일: User.java 프로젝트: nrubin29/SkypeAPI
 public void chat() {
   SkypeAPI.openURI(name + "?chat");
 }
예제 #2
0
파일: User.java 프로젝트: nrubin29/SkypeAPI
 public void call(CallType type) {
   SkypeAPI.openURI(name + "?call&video=" + type.isVideo());
 }