blob: 672be86eb2a998930579f4606e546c21f975d223 [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.dto.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.LType;
import org.eclipse.osbp.dsl.semantic.dto.LDto;
import org.eclipse.osbp.dsl.semantic.dto.LDtoInheritedAttribute;
import org.eclipse.osbp.dsl.semantic.entity.LBean;
import org.eclipse.osbp.dsl.semantic.entity.LBeanAttribute;
import org.eclipse.osbp.dsl.semantic.entity.LEntity;
import org.eclipse.osbp.dsl.semantic.entity.LEntityAttribute;
public class DtoInheritedAttributeScope extends AbstractScope {
private final LDtoInheritedAttribute prop;
public DtoInheritedAttributeScope(LDtoInheritedAttribute prop) {
super(IScope.NULLSCOPE, true);
this.prop = prop;
}
@Override
protected Iterable<IEObjectDescription> getAllLocalElements() {
ArrayList<IEObjectDescription> result = new ArrayList<IEObjectDescription>();
LDto container = prop.getDTO();
LType type = container.getWrappedType();
if (type instanceof LEntity) {
LEntity entity = (LEntity) type;
for (LEntityAttribute entityRef : entity.getAllAttributes()) {
result.add(new EObjectDescription(QualifiedName
.create(entityRef.getName()), entityRef, null));
}
} else if (type instanceof LBean) {
LBean bean = (LBean) type;
for (LBeanAttribute beanRef : bean.getAllAttributes()) {
result.add(new EObjectDescription(QualifiedName.create(beanRef
.getName()), beanRef, null));
}
}
return result;
}
}