Skip to content
Snippets Groups Projects
Commit 9a150d3b authored by Vincent Aravantinos's avatar Vincent Aravantinos
Browse files

added cut to the action service

refs 2055
parent 703300a6
No related branches found
No related tags found
No related merge requests found
......@@ -45,7 +45,7 @@ import org.fortiss.tooling.kernel.ui.util.EObjectSelectionUtils;
* @author hoelzlf
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: E1E1E54E60C244CBA630696D12A9B0FE
* @ConQAT.Rating YELLOW Hash: E69C190C8D06666F28093972E58901DF
*/
public class ActionService implements IActionService, IPersistencyServiceListener,
CommandStackListener {
......@@ -211,4 +211,10 @@ public class ActionService implements IActionService, IPersistencyServiceListene
public void runGlobalRedoAction() {
globalRedoAction.run();
}
/** {@inheritDoc} */
@Override
public void runGlobalCutAction() {
globalCutAction.run();
}
}
......@@ -28,7 +28,7 @@ import org.fortiss.tooling.kernel.ui.internal.ActionService;
* @author hoelzl
* @author $Author$
* @version $Rev$
* @ConQAT.Rating YELLOW Hash: 5964A9A57E81F49FFBF1CA0EBEC89638
* @ConQAT.Rating YELLOW Hash: 8FC7961CE1D28DBD93715A6593671E4F
*/
public interface IActionService {
......@@ -50,6 +50,9 @@ public interface IActionService {
/** Runs the global redo action. */
public void runGlobalRedoAction();
/** Runs the global cut action. */
public void runGlobalCutAction();
/** Registers all global actions with the given {@link IActionBars}. */
void registerGlobalActions(IActionBars actionBars);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment