Commands fixed.

This commit is contained in:
Paulo Veiga
2011-07-30 18:55:32 -03:00
parent b5987d1b89
commit 6a4a0f68fc
17 changed files with 471 additions and 392 deletions

View File

@@ -20,31 +20,52 @@ mindplot.BaseCommandDispatcher = new Class({
initialize: function() {
},
addIconToTopic: function() {
addIconToTopic: function(topicId, iconType) {
throw "method must be implemented.";
},
addLinkToTopic: function() {
addLinkToTopic: function(topicId, url) {
throw "method must be implemented.";
},
addNoteToTopic: function() {
addNoteToTopic: function(topicId, text) {
throw "method must be implemented.";
},addRelationship: function() {
},
addRelationship: function(model, mindmap) {
throw "method must be implemented.";
},addTopic: function() {
},
addTopic: function(model, parentTopicId, animated) {
throw "method must be implemented.";
},changeIcon: function() {
},
changeIcon: function(topicId, iconId, iconType) {
throw "method must be implemented.";
},deleteTopic: function() {
},
deleteTopic: function(topicsIds) {
throw "method must be implemented.";
},dragTopic: function() {
},
dragTopic: function(topicId) {
throw "method must be implemented.";
},moveControllPoint: function() {
},
moveControlPoint: function(trlPointController, point) {
throw "method must be implemented.";
} ,removeIconFromTopic: function() {
},
removeIconFromTopic: function(topicId, iconModel) {
throw "method must be implemented.";
},removeLinkFromTopic: function() {
},
removeLinkFromTopic: function(topicId) {
throw "method must be implemented.";
},removeNodeFromTopic: function() {
},
removeNodeFromTopic: function(topicId) {
throw "method must be implemented.";
}
});