Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenn Hussey2018-09-28 13:48:11 +0000
committerKenn Hussey2018-09-28 13:48:11 +0000
commitb6e0a2bd91bea1703895b7bf062852192a4dba00 (patch)
tree4a94d38ed9dfc9ee80a1920c7d89756c485f60bb /plugins
parent6c5acd1ff41d78aaaac4cc129007d6c082414762 (diff)
downloadorg.eclipse.uml2-b6e0a2bd91bea1703895b7bf062852192a4dba00.tar.gz
org.eclipse.uml2-b6e0a2bd91bea1703895b7bf062852192a4dba00.tar.xz
org.eclipse.uml2-b6e0a2bd91bea1703895b7bf062852192a4dba00.zip
[539580] Correcting and clarifying Javadoc.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.uml2.uml.resources/META-INF/MANIFEST.MF2
-rw-r--r--plugins/org.eclipse.uml2.uml.resources/src/org/eclipse/uml2/uml/resources/util/UMLResourcesUtil.java14
2 files changed, 8 insertions, 8 deletions
diff --git a/plugins/org.eclipse.uml2.uml.resources/META-INF/MANIFEST.MF b/plugins/org.eclipse.uml2.uml.resources/META-INF/MANIFEST.MF
index 9aae0f0d6..dc6d4acd8 100644
--- a/plugins/org.eclipse.uml2.uml.resources/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.uml2.uml.resources/META-INF/MANIFEST.MF
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.uml2.uml.resources; singleton:=true
-Bundle-Version: 5.4.0.qualifier
+Bundle-Version: 5.5.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %providerName
Bundle-Localization: plugin
diff --git a/plugins/org.eclipse.uml2.uml.resources/src/org/eclipse/uml2/uml/resources/util/UMLResourcesUtil.java b/plugins/org.eclipse.uml2.uml.resources/src/org/eclipse/uml2/uml/resources/util/UMLResourcesUtil.java
index 92d189ac5..2c2c4c6d7 100644
--- a/plugins/org.eclipse.uml2.uml.resources/src/org/eclipse/uml2/uml/resources/util/UMLResourcesUtil.java
+++ b/plugins/org.eclipse.uml2.uml.resources/src/org/eclipse/uml2/uml/resources/util/UMLResourcesUtil.java
@@ -10,7 +10,7 @@
* Kenn Hussey (CEA) - 389542, 399544, 425846, 418466, 429352
* Mikael Barbero (Obeo) - 414572
* Christian W. Damus (CEA) - 414572, 401682
- * Kenn Hussey - 526217
+ * Kenn Hussey - 526217, 539580
*/
package org.eclipse.uml2.uml.resources.util;
@@ -193,20 +193,20 @@ public class UMLResourcesUtil
/**
* <p>
- * Initializes the registries for the specified resource set (and/or the
- * global registries) with the registrations needed to work with UML2
- * resources in stand-alone mode (i.e., without Eclipse).
+ * Initializes the global registries and, if provided, the local registries
+ * for the specified resource set, with the registrations needed to work
+ * with UML2 resources in stand-alone mode (i.e., without Eclipse).
* </p>
* <p>
- * <string>Note</string> that as of the 4.2 release, clients now have more
- * fine-grained control of which registries (local or global) are
+ * <string>Note</string> that as of the 5.0 release, clients now have more
+ * fine-grained control over which registries (local or global) are
* initialized. Clients are encouraged to use these new APIs to ensure
* optimal behaviour and, where necessary, isolation from other code in the
* same class loader using the global registries.
* </p>
*
* @param resourceSet
- * The resource set whose registries to initialize, or
+ * The resource set whose local registries to initialize, or
* <code>null</code> to perform only global registrations.
* @return The resource set (or <code>null</code>).
*

Back to the top