Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.rcp / src / net / mograsim / rcp / handlers / OpenHandler.java
diff --git a/net.mograsim.rcp/src/net/mograsim/rcp/handlers/OpenHandler.java b/net.mograsim.rcp/src/net/mograsim/rcp/handlers/OpenHandler.java
deleted file mode 100644 (file)
index 7df311a..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-package net.mograsim.rcp.handlers;
-
-import org.eclipse.e4.core.di.annotations.Execute;
-import org.eclipse.swt.widgets.FileDialog;
-import org.eclipse.swt.widgets.Shell;
-
-public class OpenHandler
-{
-
-       @Execute
-       public void execute(Shell shell)
-       {
-               FileDialog dialog = new FileDialog(shell);
-               dialog.open();
-       }
-}