/**
  * Constructor of <code>NotificationHelper</code>
  *
  * @param service The {@link Context} to use
  */
 public NotificationHelper(final MusicPlaybackService service) {
   mService = service;
   mNotificationManager =
       (NotificationManager) service.getSystemService(Context.NOTIFICATION_SERVICE);
 }