/** Checks whether the Activity extends one of the ActionBarSherlock Activity types */
 public boolean usesActionBarSherlock(EComponentHolder holder) {
   TypeElement typeElement =
       annotationHelper.typeElementFromQualifiedName(
           holder.getGeneratedClass()._extends().fullName());
   return usesActionBarSherlock(typeElement);
 }