Class StatusTaskHtmlRenderer


  • public class StatusTaskHtmlRenderer
    extends java.lang.Object
    Renderer to create HTML output from Tasks.
    Author:
    alexxismachine (Ulrich David)
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void render​(Task root, TaskState status, java.io.Writer writer)
      Do the rendering of the given task with its subtasks in status to the writer.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StatusTaskHtmlRenderer

        public StatusTaskHtmlRenderer()
    • Method Detail

      • render

        public void render​(Task root,
                           TaskState status,
                           java.io.Writer writer)
                    throws java.io.IOException
        Do the rendering of the given task with its subtasks in status to the writer.
        Parameters:
        root - the root task to start rendering from. MUST NOT be null.
        status - the status tasks must be in for rendering.
        writer - the writer to render to. MUST NOT be null.
        Throws:
        java.io.IOException - on io failures on the writer.