blob: f985e93817b8e586cb75047e8066b6e9a3f0932d [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST, and others.
*
* 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:
* Nicolas FAUVERGUE (CEA LIST) nicolas.fauvergue@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.sysml16.service.types.advice;
import org.eclipse.gmf.runtime.common.core.command.ICommand;
import org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelperAdvice;
import org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest;
/**
* The EditHelperAdvice class used for:
* The property value can imply to launch a popup
*
* The reference can imply to launch a popup
*
* The part can imply to launch a popup
*
* The flowproperty value can imply to launch a popup
*/
public class AfterConfigureCommandEditHelperAdvice extends AbstractEditHelperAdvice {
/**
* Parameter id used to pass the command for setting the type of the property
*/
public static final String AFTER_CONFIGURE_COMMAND = "AFTER_CONFIGURE_COMMAND"; //$NON-NLS-1$
/**
* @see org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelperAdvice#getAfterConfigureCommand(org.eclipse.gmf.runtime.emf.type.core.requests.ConfigureRequest)
*
* @param request
* @return
*/
@Override
protected ICommand getAfterConfigureCommand(ConfigureRequest request) {
Object parameter = request.getParameter(AFTER_CONFIGURE_COMMAND);
if (parameter instanceof ICommand) {
return (ICommand) parameter;
}
return super.getAfterConfigureCommand(request);
}
}