Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java')
-rw-r--r--plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java41
1 files changed, 39 insertions, 2 deletions
diff --git a/plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java b/plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java
index e9ce05b7920..bcba3cea966 100644
--- a/plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java
+++ b/plugins/uml/org.eclipse.papyrus.uml.types.core/src-gen/org/eclipse/papyrus/uml/types/core/matchers/stereotype/util/StereotypeApplicationMatcherAdapterFactory.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2014, 2020 CEA LIST, Christian W. Damus, and others.
+ * Copyright (c) 2014, 2021 CEA LIST, Christian W. Damus, and others.
*
*
* All rights reserved. This program and the accompanying materials
@@ -11,7 +11,7 @@
*
* Contributors:
* CEA LIST - Initial API and implementation
- * Christian W. Damus - bug 568853
+ * Christian W. Damus - bugs 568853, 570542
*/
package org.eclipse.papyrus.uml.types.core.matchers.stereotype.util;
@@ -22,6 +22,7 @@ import org.eclipse.emf.common.notify.impl.AdapterFactoryImpl;
import org.eclipse.emf.ecore.EObject;
+import org.eclipse.papyrus.infra.emf.types.constraints.AdviceConstraint;
import org.eclipse.papyrus.infra.types.AbstractAdviceBindingConfiguration;
import org.eclipse.papyrus.infra.types.AbstractMatcherConfiguration;
@@ -95,6 +96,10 @@ public class StereotypeApplicationMatcherAdapterFactory extends AdapterFactoryIm
return createStereotypeMatcherAdviceConfigurationAdapter();
}
@Override
+ public Adapter caseRequiredStereotypeConstraintConfiguration(RequiredStereotypeConstraintConfiguration object) {
+ return createRequiredStereotypeConstraintConfigurationAdapter();
+ }
+ @Override
public Adapter caseConfigurationElement(ConfigurationElement object) {
return createConfigurationElementAdapter();
}
@@ -115,6 +120,10 @@ public class StereotypeApplicationMatcherAdapterFactory extends AdapterFactoryIm
return createAbstractAdviceBindingConfigurationAdapter();
}
@Override
+ public Adapter caseAdviceConstraint(AdviceConstraint object) {
+ return createAdviceConstraintAdapter();
+ }
+ @Override
public Adapter defaultCase(EObject object) {
return createEObjectAdapter();
}
@@ -163,6 +172,20 @@ public class StereotypeApplicationMatcherAdapterFactory extends AdapterFactoryIm
}
/**
+ * Creates a new adapter for an object of class '{@link org.eclipse.papyrus.uml.types.core.matchers.stereotype.RequiredStereotypeConstraintConfiguration <em>Required Stereotype Constraint Configuration</em>}'.
+ * <!-- begin-user-doc -->
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ * <!-- end-user-doc -->
+ * @return the new adapter.
+ * @see org.eclipse.papyrus.uml.types.core.matchers.stereotype.RequiredStereotypeConstraintConfiguration
+ * @generated
+ */
+ public Adapter createRequiredStereotypeConstraintConfigurationAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for an object of class '{@link org.eclipse.papyrus.infra.types.ConfigurationElement <em>Configuration Element</em>}'.
* <!-- begin-user-doc -->
* This default implementation returns null so that we can easily ignore cases;
@@ -233,6 +256,20 @@ public class StereotypeApplicationMatcherAdapterFactory extends AdapterFactoryIm
}
/**
+ * Creates a new adapter for an object of class '{@link org.eclipse.papyrus.infra.emf.types.constraints.AdviceConstraint <em>Advice Constraint</em>}'.
+ * <!-- begin-user-doc -->
+ * This default implementation returns null so that we can easily ignore cases;
+ * it's useful to ignore a case when inheritance will catch all the cases anyway.
+ * <!-- end-user-doc -->
+ * @return the new adapter.
+ * @see org.eclipse.papyrus.infra.emf.types.constraints.AdviceConstraint
+ * @generated
+ */
+ public Adapter createAdviceConstraintAdapter() {
+ return null;
+ }
+
+ /**
* Creates a new adapter for the default case.
* <!-- begin-user-doc -->
* This default implementation returns null.

Back to the top