コード例 #1
0
  private String resolveSkypeIdOf(String to) throws SkypeException {

    for (Friend f : com.skype.Skype.getContactList().getAllFriends()) {
      if (f.getFullName().equals(to) || f.getId().equals(to)) return f.getId();
    }
    throw new IllegalStateException("User " + to + " not found");
  }
コード例 #2
0
 private boolean internalIsKnownUser(String user) {
   try {
     for (Friend f : com.skype.Skype.getContactList().getAllFriends()) {
       if (f.getFullName().equals(user) || f.getId().equals(user)) return true;
     }
   } catch (SkypeException e) {
     throw new UnhandledException(e);
   }
   return false;
 }
コード例 #3
0
ファイル: AddContactCommand.java プロジェクト: NoyH/SkypeBot
 private void add(String arg) throws SkypeException {
   Skype.getContactList().addFriend(arg, "Hello, I'd like to add you as a contact");
 }