Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java')
-rw-r--r--extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java128
1 files changed, 78 insertions, 50 deletions
diff --git a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java
index bb7c4915146..af970c98f9e 100644
--- a/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java
+++ b/extraplugins/eastadl/org.eclipse.papyrus.eastadl/src/org/eclipse/papyrus/eastadl/annex/attributequantificationconstraint/util/AttributequantificationconstraintAdapterFactory.java
@@ -23,6 +23,7 @@ import org.eclipse.papyrus.eastadl.infrastructure.values.EAValue;
* The <b>Adapter Factory</b> for the model.
* It provides an adapter <code>createXXX</code> method for each class of the model.
* <!-- end-user-doc -->
+ *
* @see org.eclipse.papyrus.eastadl.annex.attributequantificationconstraint.AttributequantificationconstraintPackage
* @generated
*/
@@ -31,6 +32,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* The cached model package.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected static AttributequantificationconstraintPackage modelPackage;
@@ -39,6 +41,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* Creates an instance of the adapter factory.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
public AttributequantificationconstraintAdapterFactory() {
@@ -52,6 +55,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* <!-- begin-user-doc -->
* This implementation returns <code>true</code> if the object is either the model's package or is an instance object of the model.
* <!-- end-user-doc -->
+ *
* @return whether this factory is applicable for the type of the object.
* @generated
*/
@@ -61,7 +65,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
return true;
}
if (object instanceof EObject) {
- return ((EObject)object).eClass().getEPackage() == modelPackage;
+ return ((EObject) object).eClass().getEPackage() == modelPackage;
}
return false;
}
@@ -70,67 +74,80 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* The switch that delegates to the <code>createXXX</code> methods.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
+ *
* @generated
*/
protected AttributequantificationconstraintSwitch<Adapter> modelSwitch =
- new AttributequantificationconstraintSwitch<Adapter>() {
- @Override
- public Adapter caseAttributeQuantificationconstraint(AttributeQuantificationconstraint object) {
- return createAttributeQuantificationconstraintAdapter();
- }
- @Override
- public Adapter caseQuantification(Quantification object) {
- return createQuantificationAdapter();
- }
- @Override
- public Adapter caseBehaviorAttributeBinding(BehaviorAttributeBinding object) {
- return createBehaviorAttributeBindingAdapter();
- }
- @Override
- public Adapter caseLogicalEvent(LogicalEvent object) {
- return createLogicalEventAdapter();
- }
- @Override
- public Adapter caseAttribute(Attribute object) {
- return createAttributeAdapter();
- }
- @Override
- public Adapter caseEAElement(EAElement object) {
- return createEAElementAdapter();
- }
- @Override
- public Adapter caseBehaviorConstraintParameter(BehaviorConstraintParameter object) {
- return createBehaviorConstraintParameterAdapter();
- }
- @Override
- public Adapter caseEAValue(EAValue object) {
- return createEAValueAdapter();
- }
- @Override
- public Adapter caseEAExpression(EAExpression object) {
- return createEAExpressionAdapter();
- }
- @Override
- public Adapter caseRelationship(Relationship object) {
- return createRelationshipAdapter();
- }
- @Override
- public Adapter defaultCase(EObject object) {
- return createEObjectAdapter();
- }
- };
+ new AttributequantificationconstraintSwitch<Adapter>() {
+ @Override
+ public Adapter caseAttributeQuantificationconstraint(AttributeQuantificationconstraint object) {
+ return createAttributeQuantificationconstraintAdapter();
+ }
+
+ @Override
+ public Adapter caseQuantification(Quantification object) {
+ return createQuantificationAdapter();
+ }
+
+ @Override
+ public Adapter caseBehaviorAttributeBinding(BehaviorAttributeBinding object) {
+ return createBehaviorAttributeBindingAdapter();
+ }
+
+ @Override
+ public Adapter caseLogicalEvent(LogicalEvent object) {
+ return createLogicalEventAdapter();
+ }
+
+ @Override
+ public Adapter caseAttribute(Attribute object) {
+ return createAttributeAdapter();
+ }
+
+ @Override
+ public Adapter caseEAElement(EAElement object) {
+ return createEAElementAdapter();
+ }
+
+ @Override
+ public Adapter caseBehaviorConstraintParameter(BehaviorConstraintParameter object) {
+ return createBehaviorConstraintParameterAdapter();
+ }
+
+ @Override
+ public Adapter caseEAValue(EAValue object) {
+ return createEAValueAdapter();
+ }
+
+ @Override
+ public Adapter caseEAExpression(EAExpression object) {
+ return createEAExpressionAdapter();
+ }
+
+ @Override
+ public Adapter caseRelationship(Relationship object) {
+ return createRelationshipAdapter();
+ }
+
+ @Override
+ public Adapter defaultCase(EObject object) {
+ return createEObjectAdapter();
+ }
+ };
/**
* Creates an adapter for the <code>target</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
- * @param target the object to adapt.
+ *
+ * @param target
+ * the object to adapt.
* @return the adapter for the <code>target</code>.
* @generated
*/
@Override
public Adapter createAdapter(Notifier target) {
- return modelSwitch.doSwitch((EObject)target);
+ return modelSwitch.doSwitch((EObject) target);
}
@@ -140,6 +157,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.attributequantificationconstraint.AttributeQuantificationconstraint
* @generated
@@ -154,6 +172,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.attributequantificationconstraint.Quantification
* @generated
@@ -168,6 +187,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.attributequantificationconstraint.BehaviorAttributeBinding
* @generated
@@ -182,6 +202,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.attributequantificationconstraint.LogicalEvent
* @generated
@@ -196,6 +217,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.attributequantificationconstraint.Attribute
* @generated
@@ -210,6 +232,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.infrastructure.elements.EAElement
* @generated
@@ -224,6 +247,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.annex.behaviordescription.BehaviorConstraintParameter
* @generated
@@ -238,6 +262,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.infrastructure.values.EAValue
* @generated
@@ -252,6 +277,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.infrastructure.values.EAExpression
* @generated
@@ -266,6 +292,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* 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.eastadl.infrastructure.elements.Relationship
* @generated
@@ -279,6 +306,7 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
* <!-- begin-user-doc -->
* This default implementation returns null.
* <!-- end-user-doc -->
+ *
* @return the new adapter.
* @generated
*/
@@ -286,4 +314,4 @@ public class AttributequantificationconstraintAdapterFactory extends AdapterFact
return null;
}
-} //AttributequantificationconstraintAdapterFactory
+} // AttributequantificationconstraintAdapterFactory

Back to the top