All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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(final DocxContext docx) {
        super(docx,"", false,"");
    }

    @Override
    public void getRPr(final RPr rPr) {

    }

    @Override
    public RunFormatProvider getRunParent() {
        return null;
    }

    @Override
    protected RunFormatProvider getStyleParent() {
        return null;
    }

    @Override
    protected void inheritParentStyle(final RPr rPr, final RPr parentRPr) {
        int tmp = 0;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy