blob: 0ecf7ccd96fbf44bc575209058e4e39192918ba6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2016 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.pivot.qvtimperative.attributes;
import org.eclipse.emf.ecore.EClassifier;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.ocl.pivot.internal.scoping.EmptyAttribution;
import org.eclipse.ocl.pivot.internal.scoping.EnvironmentView;
import org.eclipse.ocl.pivot.internal.scoping.ScopeView;
import org.eclipse.qvtd.pivot.qvtimperative.LoopParameterBinding;
import org.eclipse.qvtd.pivot.qvtimperative.Mapping;
import org.eclipse.qvtd.pivot.qvtimperative.MappingCall;
import org.eclipse.qvtd.pivot.qvtimperative.QVTimperativePackage;
import org.eclipse.qvtd.pivot.qvtimperative.utilities.QVTimperativeUtil;
public class LoopParameterBindingAttribution extends EmptyAttribution
{
public static final @NonNull LoopParameterBindingAttribution INSTANCE = new LoopParameterBindingAttribution();
@Override
public ScopeView computeLookup(@NonNull EObject target, @NonNull EnvironmentView environmentView, @NonNull ScopeView scopeView) {
LoopParameterBinding mappingParameterBinding = (LoopParameterBinding)target;
MappingCall mappingCall = QVTimperativeUtil.getOwningMappingCall(mappingParameterBinding);
EStructuralFeature targetReference = environmentView.getReference();
EClassifier targetType = targetReference.getEType();
/*if (targetType == QVTimperativePackage.Literals.APPEND_PARAMETER) {
Mapping referredMapping = mappingCall.getReferredMapping();
if (referredMapping != null) {
environmentView.addNamedElements(referredMapping.getOwnedParameters());
}
}
else*/ if (targetType == QVTimperativePackage.Literals.GUARD_PARAMETER) {
Mapping referredMapping = mappingCall.getReferredMapping();
if (referredMapping != null) {
environmentView.addNamedElements(QVTimperativeUtil.getOwnedMappingParameters(referredMapping));
}
}
/* else if (targetType == QVTimperativePackage.Literals.MAPPING_PARAMETER) {
Mapping referredMapping = mappingCall.getReferredMapping();
if (referredMapping != null) {
environmentView.addNamedElements(referredMapping.getOwnedParameters());
}
}
else if (targetType == PivotPackage.Literals.VARIABLE_DECLARATION) {
Mapping referredMapping = mappingCall.getReferredMapping();
if (referredMapping != null) {
environmentView.addNamedElements(referredMapping.getOwnedParameters());
}
}
else if (targetType == QVTimperativePackage.Literals.CONNECTION_VARIABLE) {
Mapping referredMapping = mappingCall.getReferredMapping();
if (referredMapping != null) {
environmentView.addNamedElements(referredMapping.getOwnedParameters());
}
} */
return super.computeLookup(target, environmentView, scopeView);
}
}