Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java')
-rw-r--r--plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java b/plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java
index e9be2be5d..0ad1c7187 100644
--- a/plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java
+++ b/plugins/org.eclipse.etrice.core.common/xtend-gen/org/eclipse/etrice/core/common/postprocessing/PostprocessingHelpers.java
@@ -45,6 +45,7 @@ public class PostprocessingHelpers {
public static EAttribute getAttribute(final EClass cls, final String name) {
EList<EAttribute> _eAllAttributes = cls.getEAllAttributes();
final Function1<EAttribute, Boolean> _function = new Function1<EAttribute, Boolean>() {
+ @Override
public Boolean apply(final EAttribute a) {
String _name = a.getName();
return Boolean.valueOf(_name.equals(name));
@@ -56,6 +57,7 @@ public class PostprocessingHelpers {
public static EReference getReference(final EClass cls, final String name) {
EList<EReference> _eAllReferences = cls.getEAllReferences();
final Function1<EReference, Boolean> _function = new Function1<EReference, Boolean>() {
+ @Override
public Boolean apply(final EReference a) {
String _name = a.getName();
return Boolean.valueOf(_name.equals(name));

Back to the top