Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Eclipse4/RCP/Contexts"

< Eclipse4‎ | RCP
(New page: The Eclipse 4 Application Platform uses a ''context'' to record the state used for injection. Normally code should not have to use or know about the context. * the context chain and the ...)
 
Line 5: Line 5:
 
* run and tracks
 
* run and tracks
 
* creating a context
 
* creating a context
 +
* context functions
  
 +
* creating a context
 +
* when are contexts created?
 +
* how do I access the current context?
  
 
Much interesting stuff on http://wiki.eclipse.org/E4/Contexts
 
Much interesting stuff on http://wiki.eclipse.org/E4/Contexts

Revision as of 05:51, 9 April 2011

The Eclipse 4 Application Platform uses a context to record the state used for injection. Normally code should not have to use or know about the context.

  • the context chain and the active context
  • getting and setting variables vs modifying a variable
  • run and tracks
  • creating a context
  • context functions
  • creating a context
  • when are contexts created?
  • how do I access the current context?

Much interesting stuff on http://wiki.eclipse.org/E4/Contexts

Back to the top