Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java15
1 files changed, 8 insertions, 7 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java
index 0f352ab8..f4b3e67d 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/TemplateParameterImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2009 IBM Corporation and others.
+ * Copyright (c) 2005, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,9 +7,9 @@
*
* Contributors:
* IBM - initial API and implementation
- * Kenn Hussey - 286329
+ * Kenn Hussey - 286329, 323181
*
- * $Id: TemplateParameterImpl.java,v 1.22 2009/12/04 15:30:42 khussey Exp $
+ * $Id: TemplateParameterImpl.java,v 1.23 2010/09/28 21:02:13 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
@@ -897,8 +897,8 @@ public class TemplateParameterImpl
return getValue((Stereotype) arguments.get(0),
(String) arguments.get(1));
case UMLPackage.TEMPLATE_PARAMETER___SET_VALUE__STEREOTYPE_STRING_OBJECT :
- setValue((Stereotype) arguments.get(0), (String) arguments
- .get(1), arguments.get(2));
+ setValue((Stereotype) arguments.get(0),
+ (String) arguments.get(1), arguments.get(2));
return null;
case UMLPackage.TEMPLATE_PARAMETER___CREATE_EANNOTATION__STRING :
return createEAnnotation((String) arguments.get(0));
@@ -919,8 +919,9 @@ public class TemplateParameterImpl
case UMLPackage.TEMPLATE_PARAMETER___MUST_BE_OWNED :
return mustBeOwned();
case UMLPackage.TEMPLATE_PARAMETER___VALIDATE_MUST_BE_COMPATIBLE__DIAGNOSTICCHAIN_MAP :
- return validateMustBeCompatible((DiagnosticChain) arguments
- .get(0), (Map<Object, Object>) arguments.get(1));
+ return validateMustBeCompatible(
+ (DiagnosticChain) arguments.get(0),
+ (Map<Object, Object>) arguments.get(1));
}
return eDynamicInvoke(operationID, arguments);
}

Back to the top