Renamed mograsim to net.mograsim
[Mograsim.git] / SampleERCP / src / net / mograsim / rcp / handlers / AboutHandler.java
diff --git a/SampleERCP/src/net/mograsim/rcp/handlers/AboutHandler.java b/SampleERCP/src/net/mograsim/rcp/handlers/AboutHandler.java
new file mode 100644 (file)
index 0000000..25a6663
--- /dev/null
@@ -0,0 +1,14 @@
+package net.mograsim.rcp.handlers;
+
+import org.eclipse.e4.core.di.annotations.Execute;
+import org.eclipse.jface.dialogs.MessageDialog;
+import org.eclipse.swt.widgets.Shell;
+
+public class AboutHandler
+{
+       @Execute
+       public void execute(Shell shell)
+       {
+               MessageDialog.openInformation(shell, "About", "Sample RCP4");
+       }
+}