/**
  * Retrieve the bundle that has the given unique identifier.
  *
  * @param id The identifier of the bundle to retrieve.
  * @return A Bundle object, or <code>null</code> if the identifier doesn't match any installed
  *     bundle.
  */
 public Bundle getBundle(long id) {
   return framework.getBundle(this, id);
 }