blob: 8cd42d84c883d0899d1b95fa0fa273211f9fe2c1 [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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Florian Pirchner - Initial implementation
*/
package org.eclipse.osbp.dsl.entity.xtext.scope;
import java.util.ArrayList;
import org.eclipse.xtext.naming.QualifiedName;
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.dsl.semantic.common.types.LScalarType;
import org.eclipse.osbp.dsl.semantic.entity.LBean;
import org.eclipse.osbp.dsl.semantic.entity.LBeanReference;
import org.eclipse.osbp.dsl.semantic.entity.LEntity;
import org.eclipse.osbp.dsl.semantic.entity.LEntityAttribute;
public class EntityAttOppositeScope extends AbstractScope {
private final LEntityAttribute prop;
public EntityAttOppositeScope(LEntityAttribute prop) {
super(IScope.NULLSCOPE, true);
this.prop = prop;
}
@Override
protected Iterable<IEObjectDescription> getAllLocalElements() {
ArrayList<IEObjectDescription> result = new ArrayList<IEObjectDescription>();
if (prop.getType() != null) {
LEntity propClass = prop.getEntity();
LScalarType type = prop.getType();
if (type instanceof LBean) {
LBean bean = (LBean) type;
for (LBeanReference oppositeProp : bean.getReferences()) {
if (oppositeProp.getType() == propClass) {
String name = oppositeProp.getName();
if (name != null) {
result.add(new EObjectDescription(QualifiedName
.create(name), oppositeProp, null));
}
}
}
}
}
return result;
}
}