Several fixes added.

This commit is contained in:
Paulo Veiga
2011-08-04 22:12:53 -03:00
parent 63cda0a170
commit 0b3083d50c
14 changed files with 129 additions and 7771 deletions

View File

@@ -18,8 +18,9 @@
//noinspection JSUnusedLocalSymbols
mindplot.ActionDispatcher = new Class({
initialize: function() {
Implements:[Events],
initialize: function(commandContext) {
$assert(commandContext, "commandContext can not be null");
},
addIconToTopic: function(topicId, iconType) {
@@ -92,7 +93,9 @@ mindplot.ActionDispatcher = new Class({
changeFontWeightToTopic : function(topicsIds) {
throw "method must be implemented.";
},
changeTextOnTopic : function(topicsIds, text) {
throw "method must be implemented.";
}
});