]> gerrit.simantics Code Review - simantics/platform.git/blob - NewGraphDebugger.java
60feb1c82573c6f23261ff1a9f82196ad7af838d
[simantics/platform.git] / 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 }