aboutsummaryrefslogtreecommitdiffstats
path: root/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util
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
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')
-rw-r--r--Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationAdapterFactory.java80
-rw-r--r--Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationSwitch.java96
2 files changed, 176 insertions, 0 deletions
diff --git a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationAdapterFactory.java b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationAdapterFactory.java
index 7a472842..94789600 100644
--- a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationAdapterFactory.java
+++ b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/util/ApplicationConfigurationAdapterFactory.java
@@ -246,6 +246,26 @@ public class ApplicationConfigurationAdapterFactory extends AdapterFactoryImpl
246 return createConfigEntryAdapter(); 246 return createConfigEntryAdapter();
247 } 247 }
248 @Override 248 @Override
249 public Adapter caseDocumentationEntry(DocumentationEntry object)
250 {
251 return createDocumentationEntryAdapter();
252 }
253 @Override
254 public Adapter caseRuntimeEntry(RuntimeEntry object)
255 {
256 return createRuntimeEntryAdapter();
257 }
258 @Override
259 public Adapter caseMemoryEntry(MemoryEntry object)
260 {
261 return createMemoryEntryAdapter();
262 }
263 @Override
264 public Adapter caseCustomEntry(CustomEntry object)
265 {
266 return createCustomEntryAdapter();
267 }
268 @Override
249 public Adapter caseConfigReference(ConfigReference object) 269 public Adapter caseConfigReference(ConfigReference object)
250 { 270 {
251 return createConfigReferenceAdapter(); 271 return createConfigReferenceAdapter();
@@ -923,6 +943,66 @@ public class ApplicationConfigurationAdapterFactory extends AdapterFactoryImpl
923 } 943 }
924 944
925 /** 945 /**
946 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.DocumentationEntry <em>Documentation Entry</em>}'.
947 * <!-- begin-user-doc -->
948 * This default implementation returns null so that we can easily ignore cases;
949 * it's useful to ignore a case when inheritance will catch all the cases anyway.
950 * <!-- end-user-doc -->
951 * @return the new adapter.
952 * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.DocumentationEntry
953 * @generated
954 */
955 public Adapter createDocumentationEntryAdapter()
956 {
957 return null;
958 }
959
960 /**
961 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RuntimeEntry <em>Runtime Entry</em>}'.
962 * <!-- begin-user-doc -->
963 * This default implementation returns null so that we can easily ignore cases;
964 * it's useful to ignore a case when inheritance will catch all the cases anyway.
965 * <!-- end-user-doc -->
966 * @return the new adapter.
967 * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.RuntimeEntry
968 * @generated
969 */
970 public Adapter createRuntimeEntryAdapter()
971 {
972 return null;
973 }
974
975 /**
976 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MemoryEntry <em>Memory Entry</em>}'.
977 * <!-- begin-user-doc -->
978 * This default implementation returns null so that we can easily ignore cases;
979 * it's useful to ignore a case when inheritance will catch all the cases anyway.
980 * <!-- end-user-doc -->
981 * @return the new adapter.
982 * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.MemoryEntry
983 * @generated
984 */
985 public Adapter createMemoryEntryAdapter()
986 {
987 return null;
988 }
989
990 /**
991 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CustomEntry <em>Custom Entry</em>}'.
992 * <!-- begin-user-doc -->
993 * This default implementation returns null so that we can easily ignore cases;
994 * it's useful to ignore a case when inheritance will catch all the cases anyway.
995 * <!-- end-user-doc -->
996 * @return the new adapter.
997 * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.CustomEntry
998 * @generated
999 */
1000 public Adapter createCustomEntryAdapter()
1001 {
1002 return null;
1003 }
1004
1005 /**
926 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigReference <em>Config Reference</em>}'. 1006 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ConfigReference <em>Config Reference</em>}'.
927 * <!-- begin-user-doc --> 1007 * <!-- begin-user-doc -->
928 * This default implementation returns null so that we can easily ignore cases; 1008 * This default implementation returns null so that we can easily ignore cases;
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;