Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java')
-rw-r--r--plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java b/plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java
index 484721872..91d7954e7 100644
--- a/plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java
+++ b/plugins/org.eclipse.etrice.generator.java/xtend-gen/org/eclipse/etrice/generator/java/gen/VariableServiceGen.java
@@ -105,6 +105,7 @@ public class VariableServiceGen {
final HashMap<ActorInstance, List<Attribute>> aisAttrMap = new HashMap<ActorInstance, List<Attribute>>();
EList<ActorInstance> _allContainedInstances = comp.getAllContainedInstances();
final Procedure1<ActorInstance> _function = new Procedure1<ActorInstance>() {
+ @Override
public void apply(final ActorInstance ai) {
List<Attribute> _dynConfigReadAttributes = VariableServiceGen.this.configExt.getDynConfigReadAttributes(ai);
boolean _isEmpty = _dynConfigReadAttributes.isEmpty();
@@ -563,9 +564,11 @@ public class VariableServiceGen {
private HashSet<DataClass> getDynConfigDataClasses(final Iterable<ActorInstance> ais) {
final HashSet<DataClass> result = new HashSet<DataClass>();
final Procedure1<ActorInstance> _function = new Procedure1<ActorInstance>() {
+ @Override
public void apply(final ActorInstance ai) {
List<Attribute> _dynConfigReadAttributes = VariableServiceGen.this.configExt.getDynConfigReadAttributes(ai);
final Procedure1<Attribute> _function = new Procedure1<Attribute>() {
+ @Override
public void apply(final Attribute a) {
RefableType _type = a.getType();
DataType _type_1 = _type.getType();
@@ -594,6 +597,7 @@ public class VariableServiceGen {
DataClass dc = visit.pop();
List<Attribute> _allAttributes = this._roomHelpers.getAllAttributes(dc);
final Procedure1<Attribute> _function = new Procedure1<Attribute>() {
+ @Override
public void apply(final Attribute a) {
RefableType _type = a.getType();
DataType _type_1 = _type.getType();
@@ -614,6 +618,7 @@ public class VariableServiceGen {
private HashSet<RoomModel> getRoomModels(final Collection<ActorInstance> ais) {
final HashSet<RoomModel> models = new HashSet<RoomModel>();
final Procedure1<ActorInstance> _function = new Procedure1<ActorInstance>() {
+ @Override
public void apply(final ActorInstance ai) {
ActorClass _actorClass = ai.getActorClass();
EObject _eContainer = _actorClass.eContainer();

Back to the top