Skip to content
Snippets Groups Projects
Commit 1b5b6cfe authored by Bernhard Johannes Berger's avatar Bernhard Johannes Berger
Browse files

fixed find attribute.

parent d7a4ff42
No related branches found
No related tags found
No related merge requests found
Pipeline #223508 passed
......@@ -10,7 +10,7 @@
<eClassifiers xsi:type="ecore:EClass" name="Instance" eSuperTypes="#//Value">
<eOperations name="findAttribute" eType="#//Attribute">
<eAnnotations source="http://www.eclipse.org/emf/2002/GenModel">
<details key="body" value="return getAttributes().stream().filter(n -> n.getName().equals(name)).findFirst().orElse(null);"/>
<details key="body" value="return this.getAttributes()&#xA; .stream()&#xA; .filter(n -> name.equals(((%de.evoal.languages.model.instance.Name%)n.getName()).getName().getName()))&#xA; .findFirst()&#xA; .orElse(null);"/>
</eAnnotations>
<eParameters name="name" lowerBound="1" eType="ecore:EDataType http://www.eclipse.org/emf/2002/Ecore#//EString"/>
</eOperations>
......
......@@ -11,7 +11,7 @@
<genClasses ecoreClass="model.ecore#//Instance">
<genFeatures notify="false" createChild="false" propertySortChoices="true" ecoreFeature="ecore:EReference model.ecore#//Instance/name"/>
<genFeatures property="None" children="true" createChild="true" ecoreFeature="ecore:EReference model.ecore#//Instance/attributes"/>
<genOperations ecoreOperation="model.ecore#//Instance/findAttribute" body="return getAttributes().stream().filter(n -> n.getName().equals(name)).findFirst().orElse(null);">
<genOperations ecoreOperation="model.ecore#//Instance/findAttribute" body="return this.getAttributes()&#xA; .stream()&#xA; .filter(n -> name.equals(((%de.evoal.languages.model.instance.Name%)n.getName()).getName().getName()))&#xA; .findFirst()&#xA; .orElse(null);">
<genParameters ecoreParameter="model.ecore#//Instance/findAttribute/name"/>
</genOperations>
</genClasses>
......
......@@ -8,6 +8,7 @@ import de.evoal.languages.model.dl.TypeDefinition;
import de.evoal.languages.model.instance.Attribute;
import de.evoal.languages.model.instance.Instance;
import de.evoal.languages.model.instance.InstancePackage;
import de.evoal.languages.model.instance.Name;
import java.util.Collection;
......@@ -138,7 +139,11 @@ public class InstanceImpl extends ValueImpl implements Instance {
*/
@Override
public Attribute findAttribute(final String name) {
return getAttributes().stream().filter(n -> n.getName().equals(name)).findFirst().orElse(null);
return this.getAttributes()
.stream()
.filter(n -> name.equals(((Name)n.getName()).getName().getName()))
.findFirst()
.orElse(null);
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment