MCPcopy Create free account
hub / github.com/chms/jdotxt / setDefaultStatusText

Method setDefaultStatusText

src/com/chschmid/jdotxt/gui/JdotxtGUI.java:277–282  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers 6

setTaskBagMethod · 0.95
updateSearchMethod · 0.80
taskCreatedMethod · 0.80
taskUpdatedMethod · 0.80
taskDeletedMethod · 0.80
filterChangedMethod · 0.80

Calls 4

getWordMethod · 0.80
getNumOfOpenTasksMethod · 0.80
getNumOfTasksMethod · 0.80
setTextMethod · 0.80

Tested by

no test coverage detected