What is an example of a task based UI?
The easiest way to generate a task based UI is to protect all attributes/properties of your models. i.e. remove all setters. From this (pseudo code): public class TodoTask { public Date getDateAssigned(); public void setDateAssigned(Date); public string getAssignedTo(); public void setAssignedTo(string); } to this: public class TodoTask { public Date getDateAssigned(); public string getAssignedTo(); public … Read more