()
| 73 | } |
| 74 | |
| 75 | protected void beginPaint() { |
| 76 | StringBuffer str = new StringBuffer(" (") |
| 77 | .append(getItemCount()) |
| 78 | .append(")"); |
| 79 | |
| 80 | if (!stanzas.enabled) |
| 81 | str.append(" - Disabled"); |
| 82 | |
| 83 | mainbar.setElementAt(str.toString(),1); |
| 84 | } |
| 85 | |
| 86 | |
| 87 | public int getItemCount() { |
nothing calls this directly
no test coverage detected