}
public void selectRoom(String name) {
SearchableListModel model = ChatroomClient.getClient().getRoomListModel();
if (name.length() > 0 && model.getSize() > 0) {
int ind = model.longestMatch(name);
if (ind > model.getSize()) {
--ind;
}
roomList.setSelectedIndex(ind);
}