com.openhtmltopdf.extend.FSTextBreaker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
package com.openhtmltopdf.extend;
/**
* Represents a text breaker, such as those on line break opportunities.
* Implementations usually wrap a BreakIterator of some kind.
* Will be reused many times during a run.
*/
public interface FSTextBreaker {
public int next();
public void setText(String newText);
}