View | Details | Raw Unified | Return to bug 397995
Collapse All | Expand All

(-)a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/internal/ui/RSEUIStartup.java (+22 lines)
Added Link Here
1
/********************************************************************************
2
 * Copyright (c) 2013, 2013 IBM Corporation and others. All rights reserved.
3
 * This program and the accompanying materials are made available under the terms
4
 * of the Eclipse Public License v1.0 which accompanies this distribution, and is
5
 * available at http://www.eclipse.org/legal/epl-v10.html
6
 *
7
 * Contributors:
8
 * David Dykstal (IBM) - [397995] RSEInitJob starts too early
9
 ********************************************************************************/
10
11
package org.eclipse.rse.internal.ui;
12
13
import org.eclipse.rse.internal.core.RSEInitJob;
14
import org.eclipse.ui.IStartup;
15
16
public class RSEUIStartup implements IStartup {
17
18
	public void earlyStartup() {
19
       RSEInitJob.getInstance().schedule();
20
	}
21
22
}
(-)a/rse/plugins/org.eclipse.rse.ui/UI/org/eclipse/rse/ui/RSEUIPlugin.java (-3 / +1 lines)
Lines 388-396 public class RSEUIPlugin extends SystemBasePlugin Link Here
388
	{
388
	{
389
        super.start(context);
389
        super.start(context);
390
        
390
        
391
        RSEInitJob.getInstance().schedule();
391
 	   	messageFile = getMessageFile("systemmessages.xml"); //$NON-NLS-1$
392
393
	   	messageFile = getMessageFile("systemmessages.xml"); //$NON-NLS-1$
394
	   	defaultMessageFile = getDefaultMessageFile("systemmessages.xml"); //$NON-NLS-1$
392
	   	defaultMessageFile = getDefaultMessageFile("systemmessages.xml"); //$NON-NLS-1$
395
393
396
	   	//Force load the SystemRegistry - TODO Is this really necessary?
394
	   	//Force load the SystemRegistry - TODO Is this really necessary?
(-)a/rse/plugins/org.eclipse.rse.ui/plugin.xml (+5 lines)
Lines 21-26 Anna Dushistova (MontaVista) - [234274][api] Launch Shell / Terminal commands m Link Here
21
David McKnight   (IBM)        - [160105] [usability] Universal action needed to locate a resource in the Remote Systems View        
21
David McKnight   (IBM)        - [160105] [usability] Universal action needed to locate a resource in the Remote Systems View        
22
David McKnight   (IBM)        - [260792] Default prompt text color/background color for Remote Shell view is difficult to see
22
David McKnight   (IBM)        - [260792] Default prompt text color/background color for Remote Shell view is difficult to see
23
Uwe Stieber      (Wind River) - [245039] [contributions][api] Provide property tester implementations in parallel to the older action filters
23
Uwe Stieber      (Wind River) - [245039] [contributions][api] Provide property tester implementations in parallel to the older action filters
24
David Dykstal    (IBM)        - [397995] RSEInitJob runs too early
24
-->
25
-->
25
<?eclipse version="3.1"?>
26
<?eclipse version="3.1"?>
26
<plugin>
27
<plugin>
Lines 52-57 Uwe Stieber (Wind River) - [245039] [contributions][api] Provide property t Link Here
52
         </run>
53
         </run>
53
      </runtime>
54
      </runtime>
54
   </extension>
55
   </extension>
56
   
57
   <extension point="org.eclipse.ui.startup">
58
     <startup class="org.eclipse.rse.internal.ui.RSEUIStartup"/>
59
   </extension>
55
60
56
<!-- ============================================ -->
61
<!-- ============================================ -->
57
<!-- Define a RemoteSystems preference page        -->
62
<!-- Define a RemoteSystems preference page        -->

Return to bug 397995