blob: 2eb205fc959597d8dc354b49faf2d788a8a82b4f [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2021 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
* http://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.aas.profile.ui.advices;
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;
/**
* @author AS247872
*
*/
public class ConceptDescriptionEditHelperAdvice extends AbstractEditHelperAdvice {
public ConceptDescriptionEditHelperAdvice() {
super();
}
@Override
protected ICommand getBeforeConfigureCommand(ConfigureRequest request) {
return new ElementConfigurationCommand(request);
}
}