mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-15 04:55:22 +02:00
Note that the name of InitRSEJob must not ever be changed
This commit is contained in:
parent
a8510db671
commit
47896eb130
1 changed files with 6 additions and 3 deletions
|
@ -83,12 +83,14 @@ public class RSEUIPlugin extends SystemBasePlugin implements ISystemMessageProvi
|
||||||
{
|
{
|
||||||
public InitRSEJob()
|
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$
|
super("Initialize RSE"); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
public IStatus run(IProgressMonitor monitor)
|
public IStatus run(IProgressMonitor monitor)
|
||||||
{
|
{
|
||||||
|
System.err.println("InitRSEJob started"); //$NON-NLS-1$
|
||||||
ISystemRegistry registry = getSystemRegistryInternal();
|
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;
|
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()
|
public SystemViewAdapterFactory getSystemViewAdapterFactory()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue