Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse4/RCP/EAS/Obtaining Services

< Eclipse4‎ | RCP‎ | EAS
Revision as of 16:34, 11 April 2011 by Unnamed Poltroon (Talk) (New page: The services are set by the dependency injection framework when your objects gets instantiated (or explicitly injected). The services that should be injected can be marked by the <tt>@Inje...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The services are set by the dependency injection framework when your objects gets instantiated (or explicitly injected). The services that should be injected can be marked by the @Inject annotation.

public class AccountsPart {
  @Inject
  private Logger logger;
}

Back to the top