/** Utility for common operation */
 private void setTypefaceForClass(Typeface typeface, Class klazz) {
   Format format = getFormatMatching(klazz);
   if (format != null) {
     format.addCustomTypeface(typeface);
   }
 }