From 47896eb130ebb537ca2d6aff3b4540f031f4d088 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber < martin.oberhuber@windriver.com> Date: Mon, 6 Aug 2007 16:19:57 +0000 Subject: [PATCH] Note that the name of InitRSEJob must not ever be changed --- .../UI/org/eclipse/rse/ui/RSEUIPlugin.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java index 75b79237719..3de7252b371 100644 --- a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java +++ b/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java @@ -83,12 +83,14 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi { public InitRSEJob() { + //IMPORTANT: The name of this job must not ever be changed. It is par of API, + //because clients can use it to find the InitRSEJob by name, such that they can join it. super("Initialize RSE"); //$NON-NLS-1$ } public IStatus run(IProgressMonitor monitor) { - + System.err.println("InitRSEJob started"); //$NON-NLS-1$ ISystemRegistry registry = getSystemRegistryInternal(); @@ -133,7 +135,7 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi } } - + System.err.println("InitRSEJob done"); //$NON-NLS-1$ return Status.OK_STATUS; } } @@ -486,7 +488,8 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi } /** - * For pathpath access to our adapters for non-local objects in our model. Exploits the knowledge we use singleton adapters. + * For fastpath access to our adapters for non-local objects in our model. + * Exploits the knowledge we use singleton adapters. */ public SystemViewAdapterFactory getSystemViewAdapterFactory() {