com.alphasystem.docbook.handler.InlineStyleHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docbook-2-docx Show documentation
Show all versions of docbook-2-docx Show documentation
Alpha system commons library
The newest version!
package com.alphasystem.docbook.handler;
import com.alphasystem.docx4j.builder.wml.RPrBuilder;
/**
* Interface for handling style on current inline text.
*
* @author sali
*/
public interface InlineStyleHandler {
/**
* Apply the style on the current run.
*
* @param rprBuilder current running {@link RPrBuilder}
* @return modified {@link RPrBuilder} after applying this style
*/
RPrBuilder applyStyle(RPrBuilder rprBuilder);
}