Package org.eclipse.e4.ui.services
Interface EContextService
-
public interface EContextService
- Since:
- 1.0
- Restriction:
- This interface is not intended to be implemented by clients.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
activateContext(String id)
Adds the givenContext
id to the list of active contextsvoid
deactivateContext(String id)
void
deferUpdates(boolean defer)
Collection<String>
getActiveContextIds()
Context
getContext(String id)
Look up aContext
with a given id.
-
-
-
Method Detail
-
activateContext
void activateContext(String id)
Adds the givenContext
id to the list of active contexts- Parameters:
id
- the id of theContext
, cannot benull
-
deactivateContext
void deactivateContext(String id)
- Parameters:
id
- the id of theContext
, cannot benull
-
getActiveContextIds
Collection<String> getActiveContextIds()
- Returns:
- the active
Context
ids ornull
- See Also:
IServiceConstants.ACTIVE_CONTEXTS
-
deferUpdates
void deferUpdates(boolean defer)
- Restriction:
- This method is not intended to be referenced by clients.
-
-