/**
  * Gets the <tt>ResourceManagementService</tt> instance which represents the resources such as
  * internationalized and localized text and images used by the neomedia bundle.
  *
  * @return the <tt>ResourceManagementService</tt> instance which represents the resources such as
  *     internationalized and localized text and images used by the neomedia bundle
  */
 public static ResourceManagementService getResources() {
   if (resources == null) {
     resources = ResourceManagementServiceUtils.getService(bundleContext);
   }
   return resources;
 }