()
| 275 | |
| 276 | // Sets the status bar to the default text "open and total tasks" |
| 277 | public void setDefaultStatusText() { |
| 278 | String status; |
| 279 | status = JdotxtGUI.lang.getWord("Open") + ": " + taskList.getNumOfOpenTasks(); |
| 280 | status = status + " " + JdotxtGUI.lang.getWord("Total") + ": " + taskList.getNumOfTasks(); |
| 281 | JdotxtGUI.this.statusBar.setText(status); |
| 282 | } |
| 283 | |
| 284 | // Forward the filter settings to the Task List |
| 285 | public void forwardFilter2TaskList() { |
no test coverage detected