blob: 91cf955d2ab24b075c0124e08a8a44389a8616ab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BestSolution.at and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tom Schindl <tom.schindl@bestsolution.at> - initial API and implementation
******************************************************************************/
package org.eclipse.e4.tools.emf.ui.internal.common.component.dialogs;
import org.eclipse.e4.tools.emf.ui.common.IModelResource;
import org.eclipse.e4.tools.emf.ui.internal.Messages;
import org.eclipse.e4.ui.model.application.commands.MCommand;
import org.eclipse.e4.ui.model.application.commands.MHandler;
import org.eclipse.e4.ui.model.application.commands.impl.CommandsPackageImpl;
import org.eclipse.emf.common.command.Command;
import org.eclipse.emf.edit.command.SetCommand;
import org.eclipse.emf.edit.domain.EditingDomain;
import org.eclipse.swt.widgets.Shell;
public class HandlerCommandSelectionDialog extends AbstractCommandSelectionDialog {
private final MHandler handler;
public HandlerCommandSelectionDialog(Shell parentShell, MHandler handler, IModelResource resource, Messages Messages) {
super(parentShell, resource, Messages);
this.handler = handler;
}
@Override
protected String getShellTitle() {
return Messages.HandlerCommandSelectionDialog_ShellTitle;
}
@Override
protected String getDialogTitle() {
return Messages.HandlerCommandSelectionDialog_DialogTitle;
}
@Override
protected String getDialogMessage() {
return Messages.HandlerCommandSelectionDialog_DialogMessage;
}
@Override
protected Command createStoreCommand(EditingDomain editingDomain, MCommand command) {
return SetCommand.create(editingDomain, handler, CommandsPackageImpl.Literals.HANDLER__COMMAND, command);
}
}