/**
  * Does the API implement a given interface?
  *
  * @param string $addon     Name of the addon to check
  * @param string $interface Name of interface to check
  * @return boolean
  */
 public function implementsInterface($addon, $interface)
 {
     return Addon::APIImplementsInterface($addon, $interface);
 }