blob: 682387a4a637d4b7868e31a5178d555306c6f927 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2014 CEA LIST.
*
* All rights reserved. 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:
* CEA LIST - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.moka.pscs.utils.handlers;
import org.eclipse.emf.transaction.RecordingCommand;
import org.eclipse.emf.transaction.TransactionalEditingDomain;
import org.eclipse.papyrus.moka.pscs.utils.ui.GenerateConstructorUsingFieldsDialog;
import org.eclipse.swt.widgets.Display;
import org.eclipse.uml2.uml.Class;
public class GenerateConstructorUsingFieldsHandler extends AbstractCompositeUtilsHandler {
@Override
public RecordingCommand getUpdateCommand(Class context, TransactionalEditingDomain domain) {
return new GenerateConstructorUsingFieldsCommand(context, domain);
}
/**
* A command that generates a Constructor for a Class, from a dialog box.
*
* @see GenerateConstructorUsingFieldsDialog
*
*/
protected class GenerateConstructorUsingFieldsCommand extends RecordingCommand {
protected Class context;
public GenerateConstructorUsingFieldsCommand(Class context, TransactionalEditingDomain domain) {
super(domain);
this.context = context;
}
/*
* (non-Javadoc)
*
* @see
* org.eclipse.gmf.runtime.emf.commands.core.command.AbstractTransactionalCommand#doExecuteWithResult(org.eclipse.core.runtime.IProgressMonitor
* , org.eclipse.core.runtime.IAdaptable)
*/
@Override
protected void doExecute() {
GenerateConstructorUsingFieldsDialog dialog = new GenerateConstructorUsingFieldsDialog(Display.getCurrent().getActiveShell(), context);
dialog.open();
}
}
}