blob: 9260d4d1131c671c554d921d61c24e17833d457c [file] [log] [blame]
/**
* Copyright (c) 2011, 2015 - Lunifera GmbH (Gross Enzersdorf, Austria), Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
* 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:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.ecview.dsl.scope;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.resource.EObjectDescription;
import org.eclipse.xtext.resource.IEObjectDescription;
import org.eclipse.xtext.scoping.IScope;
import org.eclipse.xtext.scoping.impl.AbstractScope;
import org.eclipse.osbp.ecview.semantic.uimodel.UiRawBindable;
import org.eclipse.osbp.ecview.semantic.uimodel.UiTypedBindableRawType;
import org.eclipse.osbp.ecview.semantic.uimodel.UiView;
public class TypedBindableRawTypeScope extends AbstractScope {
private EObject context;
protected TypedBindableRawTypeScope(EObject context) {
super(IScope.NULLSCOPE, true);
this.context = context;
}
@Override
protected Iterable<IEObjectDescription> getAllLocalElements() {
if (context instanceof UiTypedBindableRawType) {
UiTypedBindableRawType def = (UiTypedBindableRawType) context;
List<IEObjectDescription> result = new ArrayList<IEObjectDescription>();
result.add(EObjectDescription.create("this",
findRawBindableParent(def)));
UiView view = findView(def);
if (view != null) {
result.add(EObjectDescription.create(view.getName(), view));
}
return result;
}
return Collections.emptyList();
}
private UiRawBindable findRawBindableParent(EObject eObject) {
UiRawBindable result = null;
while (eObject != null && eObject.eContainer() != null) {
if (eObject instanceof UiRawBindable) {
result = (UiRawBindable) eObject;
break;
}
eObject = eObject.eContainer();
}
return result;
}
private UiView findView(EObject def) {
UiView result = null;
while (def.eContainer() != null) {
def = def.eContainer();
if (def instanceof UiView) {
result = (UiView) def;
break;
}
}
return result;
}
}