public String[] getBuddiesInGroupNamed(String groupName) {
String[] buddyNames = null;
if (_connected && _conn != null) {
BuddyInfoManager buddyInfoManager = _conn.getBuddyInfoManager();
SsiService ssiService = _conn.getSsiService();
MutableBuddyList buddyList = ssiService.getBuddyList();
List groupsList = buddyList.getGroups();
Iterator groupsIter = groupsList.iterator();
while (groupsIter.hasNext()) {
MutableGroup group = (MutableGroup) groupsIter.next();
if (groupName.equals(group.getName())) {