diff --git a/bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF index 5f89256dd66..dc9acabd267 100644 --- a/bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF @@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2 Bundle-Name: Common Eclipse Runtime Tests Bundle-Vendor: Eclipse.org - Equinox Bundle-SymbolicName: org.eclipse.equinox.common.tests;singleton:=true -Bundle-Version: 3.17.200.qualifier +Bundle-Version: 3.17.300.qualifier Automatic-Module-Name: org.eclipse.equinox.common.tests Bundle-RequiredExecutionEnvironment: JavaSE-17 Bundle-ActivationPolicy: lazy diff --git a/bundles/org.eclipse.equinox.common.tests/src/org/eclipse/equinox/common/tests/registry/ExtensionRegistryDynamicTest.java b/bundles/org.eclipse.equinox.common.tests/src/org/eclipse/equinox/common/tests/registry/ExtensionRegistryDynamicTest.java index 3e6a8887ae1..0edd0f226bc 100644 --- a/bundles/org.eclipse.equinox.common.tests/src/org/eclipse/equinox/common/tests/registry/ExtensionRegistryDynamicTest.java +++ b/bundles/org.eclipse.equinox.common.tests/src/org/eclipse/equinox/common/tests/registry/ExtensionRegistryDynamicTest.java @@ -18,8 +18,15 @@ import static org.junit.Assert.assertTrue; import java.io.IOException; -import org.eclipse.core.runtime.*; -import org.eclipse.core.runtime.dynamichelpers.*; + +import org.eclipse.core.runtime.IExtension; +import org.eclipse.core.runtime.IExtensionDelta; +import org.eclipse.core.runtime.IExtensionPoint; +import org.eclipse.core.runtime.IExtensionRegistry; +import org.eclipse.core.runtime.RegistryFactory; +import org.eclipse.core.runtime.dynamichelpers.ExtensionTracker; +import org.eclipse.core.runtime.dynamichelpers.IExtensionChangeHandler; +import org.eclipse.core.runtime.dynamichelpers.IExtensionTracker; import org.eclipse.core.tests.harness.BundleTestingHelper; import org.eclipse.core.tests.harness.TestRegistryChangeListener; import org.junit.Test; @@ -61,7 +68,7 @@ public void testAddition() throws IOException, BundleException { } /** - * @see bug 65783 + * @see "bug 65783" */ @Test public void testReresolving() throws IOException, BundleException { @@ -95,7 +102,7 @@ public void testReresolving() throws IOException, BundleException { boolean removalCalled = false; /** - * @see bug 178028 + * @see "bug 178028" */ @Test public void testEventTracker() throws IOException, BundleException { diff --git a/bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF index f521f2c3bcf..8747fe2f8b0 100644 --- a/bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: org.eclipse.equinox.concurrent -Bundle-Version: 1.3.100.qualifier +Bundle-Version: 1.3.200.qualifier Bundle-Vendor: %pluginProvider Bundle-RequiredExecutionEnvironment: JavaSE-17 Import-Package: org.eclipse.core.runtime;version="3.4.0";common=split, diff --git a/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java b/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java index 24faaf94765..64f41a0b7be 100644 --- a/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java +++ b/bundles/org.eclipse.equinox.concurrent/src/org/eclipse/equinox/concurrent/future/IFuture.java @@ -40,7 +40,6 @@ * values have been provided to the future (if true, meaning that * subsequent calls to {@link #get()} will not block), or {@link #isDone()} to * determine if all operations and results have been completed. - *

*

* If {@link #hasValue()} is true, then the client may access status information * associated with the completed operation(s) via {@link #getStatus()}. Until @@ -72,8 +71,7 @@ public interface IFuture { * @throws InterruptedException if thread calling this method is * interrupted. * @throws OperationCanceledException if the operation has been canceled via - * progress monitor - * {@link #getProgressMonitor()}. + * progress monitor. */ ResultType get() throws InterruptedException, OperationCanceledException; @@ -90,8 +88,7 @@ public interface IFuture { * @throws TimeoutException if the given wait time is exceeded without * getting result. * @throws OperationCanceledException if the operation has been canceled via - * progress monitor - * {@link #getProgressMonitor()}. + * progress monitor. */ ResultType get(long waitTimeInMillis) throws InterruptedException, TimeoutException, OperationCanceledException; diff --git a/bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF index b0380a7e9c7..4eea685daa9 100644 --- a/bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %bundleName Bundle-SymbolicName: org.eclipse.equinox.console.ssh -Bundle-Version: 1.3.100.qualifier +Bundle-Version: 1.3.200.qualifier Bundle-Activator: org.eclipse.equinox.console.ssh.Activator Bundle-Vendor: %bundleVendor Bundle-Localization: plugin diff --git a/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/ssh/UserAdminCommand.java b/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/ssh/UserAdminCommand.java index 765650e7980..3ce99c3990a 100644 --- a/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/ssh/UserAdminCommand.java +++ b/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/ssh/UserAdminCommand.java @@ -42,9 +42,9 @@ public class UserAdminCommand { /** * Command for adding a user * - * @param args command line arguments in the format -username + * @param args command line arguments in the format {@code -username * -password -roles + * (optional)>} */ @Descriptor("Add user with password and roles") public void addUser( @@ -89,8 +89,8 @@ public void addUser( /** * Command for setting or changing the password of a user. * - * @param args command-line arguments in the format -username - * -password + * @param args command-line arguments in the format {@code -username + * -password } */ @Descriptor("Set or change password") public void setPassword(@Descriptor("-username \r\n-password ") String[] args) @@ -256,8 +256,8 @@ public void setPassword(final CommandSession session, /** * Command to add roles to a user * - * @param args command line arguments in the format -username - * \r\n-roles + * @param args command line arguments in the format {@code -username + * \r\n-roles } */ @Descriptor("Add roles to user") public void addRoles( @@ -294,8 +294,8 @@ public void addRoles( /** * Command to remove roles for a particular user * - * @param args command line arguments in the format -username - * \r\n-roles + * @param args command line arguments in the format {@code -username + * \r\n-roles } */ @Descriptor("Remove user roles") public void removeRoles( diff --git a/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/storage/SecureUserStore.java b/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/storage/SecureUserStore.java index 488c9ab1066..b24d1d13451 100644 --- a/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/storage/SecureUserStore.java +++ b/bundles/org.eclipse.equinox.console.ssh/src/org/eclipse/equinox/console/storage/SecureUserStore.java @@ -30,8 +30,8 @@ /** * This class implements a storage for users, passwords and roles. The data is * stored in a properties-like file in the format - * /ssh//password= and - * /ssh//roles= + * {@code /ssh//password=} and + * {@code /ssh//roles=} */ public class SecureUserStore { diff --git a/bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF b/bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF index 4472aadefa6..dc741c49f58 100644 --- a/bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF +++ b/bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %bundleName Bundle-SymbolicName: org.eclipse.equinox.console -Bundle-Version: 1.4.800.qualifier +Bundle-Version: 1.4.900.qualifier Bundle-Activator: org.eclipse.equinox.console.command.adapter.Activator Bundle-Vendor: %bundleVendor Bundle-Localization: plugin diff --git a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java index 67a68f6a5cd..a34b2bacef4 100644 --- a/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java +++ b/bundles/org.eclipse.equinox.console/src/org/eclipse/equinox/console/commands/EquinoxCommandProvider.java @@ -96,36 +96,36 @@ *

  • gc - perform a garbage collection
  • *
  • init - uninstall all bundles
  • *
  • launch - start the Service Management Framework
  • - *
  • setprop = - set the OSGI property
  • + *
  • setprop {@code =} - set the OSGI property
  • *
  • shutdown - shutdown the Service Management Framework
  • * *

    * ---Controlliing Bundles--- *

    * *

    * ---Displaying Status--- *

    *