com.vladsch.flexmark.docx.converter.util.ItalicRunFormatProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flexmark-docx-converter Show documentation
Show all versions of flexmark-docx-converter Show documentation
flexmark-java extension for rendering docx format
package com.vladsch.flexmark.docx.converter.util;
import org.docx4j.wml.RPr;
public class ItalicRunFormatProvider extends RunFormatProviderBase {
public ItalicRunFormatProvider(DocxContext docx, boolean noCharacterStyles) {
super(docx, docx.getRenderingOptions().ITALIC_STYLE, noCharacterStyles, null);
}
@Override
public void getRPr(RPr rPr) {
super.getRPr(rPr);
//rPr.setI(docx.getBooleanDefaultTrue());
//rPr.setICs(docx.getBooleanDefaultTrue());
}
}