()
| 284 | } |
| 285 | |
| 286 | public int getNewHighliteMsgsCount() { |
| 287 | if (newHighLitedMsgCnt > 0) { |
| 288 | return newHighLitedMsgCnt; |
| 289 | } |
| 290 | int nm = 0; |
| 291 | if (getGroupType() != Groups.TYPE_IGNORE) { |
| 292 | for (Enumeration e = msgs.elements(); e.hasMoreElements();) { |
| 293 | Msg m = ((MessageItem) e.nextElement()).msg; |
| 294 | if (m.unread && m.highlite) { |
| 295 | nm++; |
| 296 | } |
| 297 | } |
| 298 | } |
| 299 | return newHighLitedMsgCnt = nm; |
| 300 | } |
| 301 | |
| 302 | public boolean active() { |
| 303 | if (msgSuspended != null) { |
no test coverage detected