}
public String getFontFromTheme(STTheme type) throws Docx4JException {
TextFont textFont = getTextFontFromTheme(type);
if (textFont==null) {
log.warn("No font specified for " + type.toString() );
return null;
} else {
String typeface = textFont.getTypeface();
if (typeface==null) {
log.warn("Missing typeface in font for " + type.toString() );
return null;
} else {
if (typeface.trim().length()==0) {