Interface TextRenderer

All Known Implementing Classes:
HtmlTextRenderer, JAnsiTextRenderer, PlainTextRenderer

public interface TextRenderer
Renders an input to an output.
  • Method Details

    • render

      void render(String input, StringBuilder output, String styleName)
      Renders input text to an output.
      Parameters:
      input - The input
      output - The output
      styleName - The style name to use to render the input on the output.
    • render

      void render(StringBuilder input, StringBuilder output)
      Renders input text to an output.
      Parameters:
      input - The input
      output - The output