1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 15:15:25 +02:00

[180575] missed when applying patch

This commit is contained in:
David McKnight 2007-04-03 15:34:59 +00:00
parent 6754d2fb7b
commit 925dc6e3a6

View file

@ -3051,4 +3051,15 @@ public abstract class SubSystemConfiguration implements ISubSystemConfiguration
// dummy impl - not required for factories
}
/**
* Return true if deferred queries are supported.
* By default, they are supported. Override for different behavior.
*
* @return <code>true</code> if deferred queries are supported.
* @see org.eclipse.rse.core.subsystems.ISubSystemConfiguration#supportsDeferredQueries()
*/
public boolean supportsDeferredQueries()
{
return true;
}
}