()
| 130 | } |
| 131 | |
| 132 | public void eventOk() { |
| 133 | if (getItemCount() == 0) { |
| 134 | return; |
| 135 | } |
| 136 | |
| 137 | BookmarkItem join = (BookmarkItem) getFocusedObject(); |
| 138 | if (join == null) { |
| 139 | return; |
| 140 | } |
| 141 | if (join.bookmark.isUrl) { |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | Conference.join(join.bookmark.name, join.getJidNick(), join.bookmark.password, join.bookmark.nick, cf.confMessageCount); |
| 146 | parentView = sd.roster; |
| 147 | destroyView(); |
| 148 | } |
| 149 | |
| 150 | public void eventLongOk() { |
| 151 | if (getItemCount() == 0) { |
no test coverage detected