Basic Test
[Mograsim.git] / com.example.e4.rcp / src / com / example / e4 / rcp / handlers / AboutHandler.java
1 package com.example.e4.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         @Execute
9         public void execute(Shell shell) {
10                 MessageDialog.openInformation(shell, "About", "Eclipse 4 RCP Application");
11         }
12 }