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