p.location-badge.
  exported from angular2/di
  defined in angular2/src/di/annotations_impl.ts (line 109)
:markdown
  A marker annotation that marks a class as available to `Injector` for creation. Used by tooling
  for generating constructor stubs.
  
  ```
  class NeedsService {
    constructor(svc:UsefulService) {}
  }
  
  @Injectable
  class UsefulService {}
  ```