Backwards compatibility for DeleteBlackboardArtifactTagAction, DeleteContentTagAction

This commit is contained in:
Richard Cordovano 2015-10-09 11:36:03 -04:00
parent 07cd1d030a
commit 3d219d2947
2 changed files with 50 additions and 0 deletions

View File

@ -79,4 +79,29 @@ public class DeleteBlackboardArtifactTagAction extends AbstractAction {
}
}).start();
}
/**
* Deprecated, use actionPerformed() instead.
*
* @param event The event associated with the action.
*
* @deprecated
*/
@Deprecated
protected void doAction(ActionEvent event) {
actionPerformed(event);
}
/**
* Deprecated, does nothing. The TagManager methods to create, update or
* delete tags now do notify the case that there is a tag change. The case
* then publishes an event that triggers a refresh of the tags sub-tree in
* the tree view.
*
* @deprecated
*/
@Deprecated
protected void refreshDirectoryTree() {
}
}

View File

@ -77,4 +77,29 @@ public class DeleteContentTagAction extends AbstractAction {
}
}).start();
}
/**
* Deprecated, use actionPerformed() instead.
*
* @param event The event associated with the action.
*
* @deprecated
*/
@Deprecated
protected void doAction(ActionEvent event) {
actionPerformed(event);
}
/**
* Deprecated, does nothing. The TagManager methods to create, update or
* delete tags now do notify the case that there is a tag change. The case
* then publishes an event that triggers a refresh of the tags sub-tree in
* the tree view.
*
* @deprecated
*/
@Deprecated
protected void refreshDirectoryTree() {
}
}