org.docx4j.convert.in.xhtml.DivHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j-ImportXHTML Show documentation
Show all versions of docx4j-ImportXHTML Show documentation
docx4j-ImportXHTML converts XHTML to OpenXML WordML (docx) using docx4j
package org.docx4j.convert.in.xhtml;
import org.docx4j.org.xhtmlrenderer.render.BlockBox;
import org.docx4j.wml.ContentAccessor;
public interface DivHandler {
public ContentAccessor enter(BlockBox blockBox, ContentAccessor contentContext);
public void leave();
}