]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.debug.graphical/src/org/simantics/debug/graphical/NewGraphDebugger.java
Support Json content as drop data in Graphical Debugger
[simantics/platform.git] / bundles / org.simantics.debug.graphical / src / org / simantics / debug / graphical / NewGraphDebugger.java
1 package org.simantics.debug.graphical;
2
3 import org.eclipse.core.commands.AbstractHandler;
4 import org.eclipse.core.commands.ExecutionEvent;
5 import org.eclipse.core.commands.ExecutionException;
6
7 public class NewGraphDebugger extends AbstractHandler {
8
9     @Override
10     public Object execute(ExecutionEvent event) throws ExecutionException {
11         GraphicalDebugger.newGraphDebugger();
12         return null;
13     }
14
15 }