25a666383dad3aae88e859004ec3d5b42f18fa1b
[Mograsim.git] / net.mograsim.rcp / src / net / mograsim / rcp / handlers / AboutHandler.java
1 package net.mograsim.rcp.handlers;
2
3 import org.eclipse.e4.core.di.annotations.Execute;
4 import org.eclipse.jface.dialogs.MessageDialog;
5 import org.eclipse.swt.widgets.Shell;
6
7 public class AboutHandler
8 {
9         @Execute
10         public void execute(Shell shell)
11         {
12                 MessageDialog.openInformation(shell, "About", "Sample RCP4");
13         }
14 }