diff options
Diffstat (limited to 'org/madore/damlengine/TodoElement.java')
| -rw-r--r-- | org/madore/damlengine/TodoElement.java | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/org/madore/damlengine/TodoElement.java b/org/madore/damlengine/TodoElement.java index 60b80c2..8db448c 100644 --- a/org/madore/damlengine/TodoElement.java +++ b/org/madore/damlengine/TodoElement.java @@ -43,6 +43,17 @@ public abstract class TodoElement extends TodoItem {  	damlFactories.put("email-dot", new TodoEmailAtOrDotElement.Factory(TodoEmailAtOrDotElement.Type.DOT));  	damlFactories.put("extra-style", new TodoExtraStyleOrScriptElement.Factory(TodoStyleOrScript.Type.STYLE));  	damlFactories.put("extra-script", new TodoExtraStyleOrScriptElement.Factory(TodoStyleOrScript.Type.SCRIPT)); +	damlFactories.put("smiley-smile", new TodoSmileyElement.Factory(TodoSmileyElement.Type.SMILE)); +	damlFactories.put("smiley-wink", new TodoSmileyElement.Factory(TodoSmileyElement.Type.WINK)); +	damlFactories.put("smiley-surprised", new TodoSmileyElement.Factory(TodoSmileyElement.Type.SURPRISED)); +	damlFactories.put("smiley-sad", new TodoSmileyElement.Factory(TodoSmileyElement.Type.SAD)); +	damlFactories.put("smiley-cool", new TodoSmileyElement.Factory(TodoSmileyElement.Type.COOL)); +	damlFactories.put("smiley-biggrin", new TodoSmileyElement.Factory(TodoSmileyElement.Type.BIGGRIN)); +	damlFactories.put("smiley-confused", new TodoSmileyElement.Factory(TodoSmileyElement.Type.CONFUSED)); +	damlFactories.put("smiley-crazy", new TodoSmileyElement.Factory(TodoSmileyElement.Type.CRAZY)); +	damlFactories.put("smiley-neutral", new TodoSmileyElement.Factory(TodoSmileyElement.Type.NEUTRAL)); +	damlFactories.put("smiley-twisted", new TodoSmileyElement.Factory(TodoSmileyElement.Type.TWISTED)); +	damlFactories.put("smiley-cry", new TodoSmileyElement.Factory(TodoSmileyElement.Type.CRY));      }      protected final Element node; | 
