blob: 4a420a3a05f45af9beadf1bc2ac04f1634f5c7aa [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 PreferencesHandler {
@Execute
public void execute(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell) {
MessageDialog.openInformation(shell, "e4photo",
"This should open the e4photo preferences");
}
}