Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhussey2009-08-12 21:03:29 +0000
committerkhussey2009-08-12 21:03:29 +0000
commit72dfcdbd630a1e70e00961072c3dd666bdedbca1 (patch)
tree7240868f11e18bed6e5f71ba1ac416435b034827
parent447c6859215049ed84a1f2e9d59187fcc621f0d4 (diff)
downloadorg.eclipse.uml2.test-R3_0_maintenance.tar.gz
org.eclipse.uml2.test-R3_0_maintenance.tar.xz
org.eclipse.uml2.test-R3_0_maintenance.zip
[282440] Ensuring fragment segments are encoded for UML model elements.v200908281330R3_0_maintenance
-rw-r--r--plugins/org.eclipse.uml2.uml/META-INF/MANIFEST.MF2
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/NamedElementImpl.java6
2 files changed, 5 insertions, 3 deletions
diff --git a/plugins/org.eclipse.uml2.uml/META-INF/MANIFEST.MF b/plugins/org.eclipse.uml2.uml/META-INF/MANIFEST.MF
index b6ae3154..99dafeec 100644
--- a/plugins/org.eclipse.uml2.uml/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.uml2.uml/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.uml2.uml; singleton:=true
-Bundle-Version: 3.0.0.qualifier
+Bundle-Version: 3.0.1.qualifier
Bundle-ClassPath: .
Bundle-Activator: org.eclipse.uml2.uml.UMLPlugin$Implementation
Bundle-Vendor: %providerName
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/NamedElementImpl.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/NamedElementImpl.java
index e60644db..3af0089d 100644
--- a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/NamedElementImpl.java
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/internal/impl/NamedElementImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2008 IBM Corporation, Embarcadero Technologies, and others.
+ * Copyright (c) 2005, 2009 IBM Corporation, Embarcadero Technologies, 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
@@ -8,8 +8,9 @@
* Contributors:
* IBM - initial API and implementation
* Kenn Hussey (Embarcadero Technologies) - 204200
+ * Sergey Boyko (Borland) - 282440
*
- * $Id: NamedElementImpl.java,v 1.32 2008/05/05 15:14:24 khussey Exp $
+ * $Id: NamedElementImpl.java,v 1.32.4.1 2009/08/12 21:03:29 khussey Exp $
*/
package org.eclipse.uml2.uml.internal.impl;
@@ -961,6 +962,7 @@ public abstract class NamedElementImpl
}
}
+ name = URI.encodeSegment(name, true);
return count > 0
? name + '.' + count
: name;

Back to the top