private void changeStatus(int status) { task.setStatus(status); com.zavitz.mytasks.functions.PersistentUtils.save(); this.status.setSelected(status); percent_complete.setTextQuiet(task.getPercentComplete() + "%"); }
public void taskEdited(Task task) { task.updateEvent(); com.zavitz.mytasks.functions.PersistentUtils.save(); UiApplication.getUiApplication().popScreen(this); UiApplication.getUiApplication().pushScreen(new TaskScreen(task)); }
public void run() { NoteField noteField = (NoteField) getLeafFieldWithFocus(); task.deleteNote(noteField.note); notes.delete(noteField); com.zavitz.mytasks.functions.PersistentUtils.save(); }