ISIS-1027: also, refactored ToDoAppDashboard, so uses @DomainObject(nature=VIEW_MODEL) rather than inherit from AbstractViewModel.
... most of this refactoring was done in previous commit. Project: http://git-wip-us.apache.org/repos/asf/isis/repo Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/b30046c2 Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/b30046c2 Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/b30046c2 Branch: refs/heads/master Commit: b30046c2d7f3994db81a30ab97dc0249b96f1e0a Parents: e404012 Author: Dan Haywood <[email protected]> Authored: Fri Feb 6 13:08:23 2015 +0000 Committer: Dan Haywood <[email protected]> Committed: Fri Feb 6 13:08:23 2015 +0000 ---------------------------------------------------------------------- .../dom/src/main/java/app/ToDoAppDashboard.java | 14 -------------- 1 file changed, 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/isis/blob/b30046c2/example/application/todoapp/dom/src/main/java/app/ToDoAppDashboard.java ---------------------------------------------------------------------- diff --git a/example/application/todoapp/dom/src/main/java/app/ToDoAppDashboard.java b/example/application/todoapp/dom/src/main/java/app/ToDoAppDashboard.java index 65311cf..e3a3723 100644 --- a/example/application/todoapp/dom/src/main/java/app/ToDoAppDashboard.java +++ b/example/application/todoapp/dom/src/main/java/app/ToDoAppDashboard.java @@ -35,20 +35,6 @@ public class ToDoAppDashboard { } //endregion -// //region > memento (property) -// private String memento = "Dashboard"; -// -// @Property(hidden = Where.EVERYWHERE) -// @MemberOrder(sequence = "1") -// public String getMemento() { -// return memento; -// } -// -// public void setMemento(final String memento) { -// this.memento = memento; -// } -// //endregion - //region > getAnalysisByCategory (collection) @CollectionLayout( named="By Category",
