aboutsummaryrefslogtreecommitdiffstats
path: root/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java
diff options
context:
space:
mode:
authorLibravatar OszkarSemerath <oszkar.semerath@gmail.com>2018-02-24 19:37:32 -0500
committerLibravatar OszkarSemerath <oszkar.semerath@gmail.com>2018-02-24 19:37:32 -0500
commit455c332357a1da6ee8073811b6aa72fc5edda51e (patch)
treed3db6b7c4244ee5b01f1b9704db02a62ef7ce364 /Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java
parentTranslated PQueryies are added to annotation. (diff)
downloadVIATRA-Generator-455c332357a1da6ee8073811b6aa72fc5edda51e.tar.gz
VIATRA-Generator-455c332357a1da6ee8073811b6aa72fc5edda51e.tar.zst
VIATRA-Generator-455c332357a1da6ee8073811b6aa72fc5edda51e.zip
Application configuration update
Diffstat (limited to 'Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java')
-rw-r--r--Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java96
1 files changed, 96 insertions, 0 deletions
diff --git a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java
index a579f3f1..cf485639 100644
--- a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java
+++ b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java
@@ -339,6 +339,38 @@ public class ApplicationConfigurationSwitch<T> extends Switch<T>
339 if (result == null) result = defaultCase(theEObject); 339 if (result == null) result = defaultCase(theEObject);
340 return result; 340 return result;
341 } 341 }
342 case ApplicationConfigurationPackage.DOCUMENTATION_ENTRY:
343 {
344 DocumentationEntry documentationEntry = (DocumentationEntry)theEObject;
345 T result = caseDocumentationEntry(documentationEntry);
346 if (result == null) result = caseConfigEntry(documentationEntry);
347 if (result == null) result = defaultCase(theEObject);
348 return result;
349 }
350 case ApplicationConfigurationPackage.RUNTIME_ENTRY:
351 {
352 RuntimeEntry runtimeEntry = (RuntimeEntry)theEObject;
353 T result = caseRuntimeEntry(runtimeEntry);
354 if (result == null) result = caseConfigEntry(runtimeEntry);
355 if (result == null) result = defaultCase(theEObject);
356 return result;
357 }
358 case ApplicationConfigurationPackage.MEMORY_ENTRY:
359 {
360 MemoryEntry memoryEntry = (MemoryEntry)theEObject;
361 T result = caseMemoryEntry(memoryEntry);
362 if (result == null) result = caseConfigEntry(memoryEntry);
363 if (result == null) result = defaultCase(theEObject);
364 return result;
365 }
366 case ApplicationConfigurationPackage.CUSTOM_ENTRY:
367 {
368 CustomEntry customEntry = (CustomEntry)theEObject;
369 T result = caseCustomEntry(customEntry);
370 if (result == null) result = caseConfigEntry(customEntry);
371 if (result == null) result = defaultCase(theEObject);
372 return result;
373 }
342 case ApplicationConfigurationPackage.CONFIG_REFERENCE: 374 case ApplicationConfigurationPackage.CONFIG_REFERENCE:
343 { 375 {
344 ConfigReference configReference = (ConfigReference)theEObject; 376 ConfigReference configReference = (ConfigReference)theEObject;
@@ -1120,6 +1152,70 @@ public class ApplicationConfigurationSwitch<T> extends Switch<T>
1120 } 1152 }
1121 1153
1122 /** 1154 /**
1155 * Returns the result of interpreting the object as an instance of '<em>Documentation Entry</em>'.
1156 * <!-- begin-user-doc -->
1157 * This implementation returns null;
1158 * returning a non-null result will terminate the switch.
1159 * <!-- end-user-doc -->
1160 * @param object the target of the switch.
1161 * @return the result of interpreting the object as an instance of '<em>Documentation Entry</em>'.
1162 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
1163 * @generated
1164 */
1165 public T caseDocumentationEntry(DocumentationEntry object)
1166 {
1167 return null;
1168 }
1169
1170 /**
1171 * Returns the result of interpreting the object as an instance of '<em>Runtime Entry</em>'.
1172 * <!-- begin-user-doc -->
1173 * This implementation returns null;
1174 * returning a non-null result will terminate the switch.
1175 * <!-- end-user-doc -->
1176 * @param object the target of the switch.
1177 * @return the result of interpreting the object as an instance of '<em>Runtime Entry</em>'.
1178 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
1179 * @generated
1180 */
1181 public T caseRuntimeEntry(RuntimeEntry object)
1182 {
1183 return null;
1184 }
1185
1186 /**
1187 * Returns the result of interpreting the object as an instance of '<em>Memory Entry</em>'.
1188 * <!-- begin-user-doc -->
1189 * This implementation returns null;
1190 * returning a non-null result will terminate the switch.
1191 * <!-- end-user-doc -->
1192 * @param object the target of the switch.
1193 * @return the result of interpreting the object as an instance of '<em>Memory Entry</em>'.
1194 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
1195 * @generated
1196 */
1197 public T caseMemoryEntry(MemoryEntry object)
1198 {
1199 return null;
1200 }
1201
1202 /**
1203 * Returns the result of interpreting the object as an instance of '<em>Custom Entry</em>'.
1204 * <!-- begin-user-doc -->
1205 * This implementation returns null;
1206 * returning a non-null result will terminate the switch.
1207 * <!-- end-user-doc -->
1208 * @param object the target of the switch.
1209 * @return the result of interpreting the object as an instance of '<em>Custom Entry</em>'.
1210 * @see #doSwitch(org.eclipse.emf.ecore.EObject) doSwitch(EObject)
1211 * @generated
1212 */
1213 public T caseCustomEntry(CustomEntry object)
1214 {
1215 return null;
1216 }
1217
1218 /**
1123 * Returns the result of interpreting the object as an instance of '<em>Config Reference</em>'. 1219 * Returns the result of interpreting the object as an instance of '<em>Config Reference</em>'.
1124 * <!-- begin-user-doc --> 1220 * <!-- begin-user-doc -->
1125 * This implementation returns null; 1221 * This implementation returns null;