aboutsummaryrefslogtreecommitdiffstats
path: root/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java')
-rw-r--r--Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java136
1 files changed, 131 insertions, 5 deletions
diff --git a/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java
index d61c3a2a..25edee70 100644
--- a/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java
+++ b/Framework/hu.bme.mit.inf.dslreasoner.logic.model/ecore-gen/hu/bme/mit/inf/dslreasoner/logic/model/logiclanguage/util/LogiclanguageAdapterFactory.java
@@ -204,8 +204,8 @@ public class LogiclanguageAdapterFactory extends AdapterFactoryImpl {
204 return createMoreOrEqualThanAdapter(); 204 return createMoreOrEqualThanAdapter();
205 } 205 }
206 @Override 206 @Override
207 public Adapter caseIntOperation(IntOperation object) { 207 public Adapter caseNumericOperation(NumericOperation object) {
208 return createIntOperationAdapter(); 208 return createNumericOperationAdapter();
209 } 209 }
210 @Override 210 @Override
211 public Adapter casePlus(Plus object) { 211 public Adapter casePlus(Plus object) {
@@ -300,6 +300,34 @@ public class LogiclanguageAdapterFactory extends AdapterFactoryImpl {
300 return createTransitiveClosureAdapter(); 300 return createTransitiveClosureAdapter();
301 } 301 }
302 @Override 302 @Override
303 public Adapter casePow(Pow object) {
304 return createPowAdapter();
305 }
306 @Override
307 public Adapter caseAggregateExpression(AggregateExpression object) {
308 return createAggregateExpressionAdapter();
309 }
310 @Override
311 public Adapter caseSum(Sum object) {
312 return createSumAdapter();
313 }
314 @Override
315 public Adapter caseCount(Count object) {
316 return createCountAdapter();
317 }
318 @Override
319 public Adapter caseMin(Min object) {
320 return createMinAdapter();
321 }
322 @Override
323 public Adapter caseMax(Max object) {
324 return createMaxAdapter();
325 }
326 @Override
327 public Adapter caseProjectedAggregateExpression(ProjectedAggregateExpression object) {
328 return createProjectedAggregateExpressionAdapter();
329 }
330 @Override
303 public Adapter defaultCase(EObject object) { 331 public Adapter defaultCase(EObject object) {
304 return createEObjectAdapter(); 332 return createEObjectAdapter();
305 } 333 }
@@ -796,16 +824,16 @@ public class LogiclanguageAdapterFactory extends AdapterFactoryImpl {
796 } 824 }
797 825
798 /** 826 /**
799 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.IntOperation <em>Int Operation</em>}'. 827 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.NumericOperation <em>Numeric Operation</em>}'.
800 * <!-- begin-user-doc --> 828 * <!-- begin-user-doc -->
801 * This default implementation returns null so that we can easily ignore cases; 829 * This default implementation returns null so that we can easily ignore cases;
802 * it's useful to ignore a case when inheritance will catch all the cases anyway. 830 * it's useful to ignore a case when inheritance will catch all the cases anyway.
803 * <!-- end-user-doc --> 831 * <!-- end-user-doc -->
804 * @return the new adapter. 832 * @return the new adapter.
805 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.IntOperation 833 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.NumericOperation
806 * @generated 834 * @generated
807 */ 835 */
808 public Adapter createIntOperationAdapter() { 836 public Adapter createNumericOperationAdapter() {
809 return null; 837 return null;
810 } 838 }
811 839
@@ -1132,6 +1160,104 @@ public class LogiclanguageAdapterFactory extends AdapterFactoryImpl {
1132 } 1160 }
1133 1161
1134 /** 1162 /**
1163 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Pow <em>Pow</em>}'.
1164 * <!-- begin-user-doc -->
1165 * This default implementation returns null so that we can easily ignore cases;
1166 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1167 * <!-- end-user-doc -->
1168 * @return the new adapter.
1169 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Pow
1170 * @generated
1171 */
1172 public Adapter createPowAdapter() {
1173 return null;
1174 }
1175
1176 /**
1177 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.AggregateExpression <em>Aggregate Expression</em>}'.
1178 * <!-- begin-user-doc -->
1179 * This default implementation returns null so that we can easily ignore cases;
1180 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1181 * <!-- end-user-doc -->
1182 * @return the new adapter.
1183 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.AggregateExpression
1184 * @generated
1185 */
1186 public Adapter createAggregateExpressionAdapter() {
1187 return null;
1188 }
1189
1190 /**
1191 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Sum <em>Sum</em>}'.
1192 * <!-- begin-user-doc -->
1193 * This default implementation returns null so that we can easily ignore cases;
1194 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1195 * <!-- end-user-doc -->
1196 * @return the new adapter.
1197 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Sum
1198 * @generated
1199 */
1200 public Adapter createSumAdapter() {
1201 return null;
1202 }
1203
1204 /**
1205 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Count <em>Count</em>}'.
1206 * <!-- begin-user-doc -->
1207 * This default implementation returns null so that we can easily ignore cases;
1208 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1209 * <!-- end-user-doc -->
1210 * @return the new adapter.
1211 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Count
1212 * @generated
1213 */
1214 public Adapter createCountAdapter() {
1215 return null;
1216 }
1217
1218 /**
1219 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Min <em>Min</em>}'.
1220 * <!-- begin-user-doc -->
1221 * This default implementation returns null so that we can easily ignore cases;
1222 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1223 * <!-- end-user-doc -->
1224 * @return the new adapter.
1225 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Min
1226 * @generated
1227 */
1228 public Adapter createMinAdapter() {
1229 return null;
1230 }
1231
1232 /**
1233 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Max <em>Max</em>}'.
1234 * <!-- begin-user-doc -->
1235 * This default implementation returns null so that we can easily ignore cases;
1236 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1237 * <!-- end-user-doc -->
1238 * @return the new adapter.
1239 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.Max
1240 * @generated
1241 */
1242 public Adapter createMaxAdapter() {
1243 return null;
1244 }
1245
1246 /**
1247 * Creates a new adapter for an object of class '{@link hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.ProjectedAggregateExpression <em>Projected Aggregate Expression</em>}'.
1248 * <!-- begin-user-doc -->
1249 * This default implementation returns null so that we can easily ignore cases;
1250 * it's useful to ignore a case when inheritance will catch all the cases anyway.
1251 * <!-- end-user-doc -->
1252 * @return the new adapter.
1253 * @see hu.bme.mit.inf.dslreasoner.logic.model.logiclanguage.ProjectedAggregateExpression
1254 * @generated
1255 */
1256 public Adapter createProjectedAggregateExpressionAdapter() {
1257 return null;
1258 }
1259
1260 /**
1135 * Creates a new adapter for the default case. 1261 * Creates a new adapter for the default case.
1136 * <!-- begin-user-doc --> 1262 * <!-- begin-user-doc -->
1137 * This default implementation returns null. 1263 * This default implementation returns null.