blob: 9adca1348b576bfcd97ab6f972c6f311e2218919 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2020 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:
* Ansgar Radermacher - initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.robotics.core.types.advice;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.gmf.runtime.emf.type.core.edithelper.AbstractEditHelperAdvice;
import org.eclipse.gmf.runtime.emf.type.core.requests.CreateElementRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.GetEditContextRequest;
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest;
import org.eclipse.uml2.uml.DataType;
import org.eclipse.uml2.uml.Enumeration;
/**
* Edit Helper Advice for creating a new type and typing the port with this type
*/
public class DataAttributeEditHelperAdvice extends AbstractEditHelperAdvice {
@Override
public boolean approveRequest(IEditCommandRequest request) {
if (request instanceof GetEditContextRequest) {
GetEditContextRequest context = (GetEditContextRequest) request;
if (context.getEditCommandRequest() instanceof CreateElementRequest) {
CreateElementRequest createReq = (CreateElementRequest) context.getEditCommandRequest();
EObject container = createReq.getContainer();
return container instanceof DataType && !(container instanceof Enumeration);
}
}
return super.approveRequest(request);
}
}