Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhussey2010-09-28 21:02:12 +0000
committerkhussey2010-09-28 21:02:12 +0000
commitcc87a95d4929176046c145a9ef75f11f482655e9 (patch)
treece3eba354759b540a8d31f45a7ae761824d13a94 /plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java
parent4b3c9a9b55b2b3834a6fff4a711d6d3df1b5ffb8 (diff)
downloadorg.eclipse.uml2.test-cc87a95d4929176046c145a9ef75f11f482655e9.tar.gz
org.eclipse.uml2.test-cc87a95d4929176046c145a9ef75f11f482655e9.tar.xz
org.eclipse.uml2.test-cc87a95d4929176046c145a9ef75f11f482655e9.zip
[323181] Regenerating code with latest templates.
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java20
1 files changed, 11 insertions, 9 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java
index 2351b37c..3346af09 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/LiteralUnlimitedNaturalImpl.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: LiteralUnlimitedNaturalImpl.java,v 1.18 2009/12/04 15:30:46 khussey Exp $
+ * $Id: LiteralUnlimitedNaturalImpl.java,v 1.19 2010/09/28 21:02:14 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
@@ -404,8 +404,8 @@ public class LiteralUnlimitedNaturalImpl
return getValue((Stereotype) arguments.get(0),
(String) arguments.get(1));
case UMLPackage.LITERAL_UNLIMITED_NATURAL___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.LITERAL_UNLIMITED_NATURAL___CREATE_EANNOTATION__STRING :
return createEAnnotation((String) arguments.get(0));
@@ -426,11 +426,13 @@ public class LiteralUnlimitedNaturalImpl
case UMLPackage.LITERAL_UNLIMITED_NATURAL___MUST_BE_OWNED :
return mustBeOwned();
case UMLPackage.LITERAL_UNLIMITED_NATURAL___VALIDATE_HAS_NO_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP :
- return validateHasNoQualifiedName((DiagnosticChain) arguments
- .get(0), (Map<Object, Object>) arguments.get(1));
+ return validateHasNoQualifiedName(
+ (DiagnosticChain) arguments.get(0),
+ (Map<Object, Object>) arguments.get(1));
case UMLPackage.LITERAL_UNLIMITED_NATURAL___VALIDATE_HAS_QUALIFIED_NAME__DIAGNOSTICCHAIN_MAP :
- return validateHasQualifiedName((DiagnosticChain) arguments
- .get(0), (Map<Object, Object>) arguments.get(1));
+ return validateHasQualifiedName(
+ (DiagnosticChain) arguments.get(0),
+ (Map<Object, Object>) arguments.get(1));
case UMLPackage.LITERAL_UNLIMITED_NATURAL___VALIDATE_VISIBILITY_NEEDS_OWNERSHIP__DIAGNOSTICCHAIN_MAP :
return validateVisibilityNeedsOwnership(
(DiagnosticChain) arguments.get(0),

Back to the top