blob: 12999f20baa9975642e6a93bcf27c2a9e8a664b7 [file] [log] [blame]
package org.eclipse.e4.demo.e4photo;
import javax.inject.Named;
import org.eclipse.e4.core.di.annotations.Execute;
import org.eclipse.e4.ui.services.IServiceConstants;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.widgets.Shell;
public class AboutHandler {
@Execute
public void execute(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell) {
MessageDialog.openInformation(shell, "e4photo", "This is e4photo");
}
}