Suppressed warnings where the thing warned about is intentional
[Mograsim.git] / SampleERCP / src / sampleercp / handlers / AboutHandler.java
1 package sampleercp.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 }