
com.vladsch.flexmark.docx.converter.util.FootnoteRunFormatProvider Maven / Gradle / Ivy
package com.vladsch.flexmark.docx.converter.util;
import org.docx4j.wml.RPr;
public class FootnoteRunFormatProvider extends RunFormatProviderBase {
public FootnoteRunFormatProvider(DocxContext docx) {
super(docx, docx.getRenderingOptions().FOOTNOTE_TEXT, false, "");
}
@Override
public void getRPr(RPr rPr) {
}
@Override
public RunFormatProvider getRunParent() {
return null;
}
@Override
protected RunFormatProvider getStyleParent() {
return null;
}
@Override
protected void inheritParentStyle(RPr rPr, RPr parentRPr) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy