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 voidactivateContext(java.lang.String id)Adds the givenContextid to the list of active contextsvoiddeactivateContext(java.lang.String id)voiddeferUpdates(boolean defer)java.util.Collection<java.lang.String>getActiveContextIds()ContextgetContext(java.lang.String id)Look up aContextwith a given id.
-
-
-
Method Detail
-
getContext
Context getContext(java.lang.String id)
-
activateContext
void activateContext(java.lang.String id)
Adds the givenContextid to the list of active contexts- Parameters:
id- the id of theContext, cannot benull
-
deactivateContext
void deactivateContext(java.lang.String id)
- Parameters:
id- the id of theContext, cannot benull
-
getActiveContextIds
java.util.Collection<java.lang.String> getActiveContextIds()
- Returns:
- the active
Contextids ornull - See Also:
IServiceConstants.ACTIVE_CONTEXTS
-
deferUpdates
void deferUpdates(boolean defer)
- Restriction:
- This method is not intended to be referenced by clients.
-
-