summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoDeque.java
Commit message (Collapse)AuthorAgeFilesLines
* Various "stylistic" improvements suggested by Joshua Bloch's book.David A. Madore2010-04-221-6/+6
| | | | | | Use @Override annotation. Limit accessibility of fields. Make final what can be. Use complex enums. Don't ignore exceptions. Some more changes on exceptions thrown.
* Change dispatching approach: handlers are now part of todoItems.David A. Madore2010-04-151-1/+1
| | | | | | | Instead of dispatching the todo item in function of the DAML node's local name at todo-handling time, the appropriate todo handler subclass is now instantiated in the todo deque by dispatching the creation of the todo item to the appropriate constructor.
* Instantiate TodoDeque rather than using static variables.David A. Madore2010-04-151-20/+22
| | | | Unfortunately, processing is now rather significantly slower.
* Framework for handling attributes.David A. Madore2010-04-131-2/+2
|
* Create a todo deque class, and use it.David A. Madore2010-04-131-0/+53