1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

[289742] - [vm] IVMEventListener lacking @ConfinedToDsfExecutor annotation

This commit is contained in:
Pawel Piech 2009-09-22 21:20:09 +00:00
parent 28f44f903d
commit a5d25b3bfa
2 changed files with 4 additions and 0 deletions

View file

@ -14,6 +14,7 @@ import java.util.concurrent.Executor;
import org.eclipse.cdt.dsf.concurrent.ConfinedToDsfExecutor;
import org.eclipse.cdt.dsf.concurrent.RequestMonitor;
import org.eclipse.cdt.dsf.concurrent.ThreadSafe;
/**
* A listener participating in event notifications sent out from VM adapter.
@ -26,6 +27,7 @@ public interface IVMEventListener {
/**
* Returns the executor that needs to be used to access this event listener.
*/
@ThreadSafe
public Executor getExecutor();
/**

View file

@ -13,6 +13,7 @@ package org.eclipse.cdt.dsf.ui.viewmodel;
import java.util.concurrent.Executor;
import org.eclipse.cdt.dsf.concurrent.ConfinedToDsfExecutor;
import org.eclipse.cdt.dsf.concurrent.ThreadSafe;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenCountUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IChildrenUpdate;
import org.eclipse.debug.internal.ui.viewers.model.provisional.IColumnPresentationFactory;
@ -67,6 +68,7 @@ public interface IVMProvider
/**
* Returns the executor that needs to be used to access this provider.
*/
@ThreadSafe
public Executor getExecutor();
/**