Class AbstractRenderer<T>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void render​(T object, java.lang.Appendable appendable)
      Renders object as plain text, appended directly to appendable.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface com.google.gwt.text.shared.Renderer

        render
    • Constructor Detail

      • AbstractRenderer

        public AbstractRenderer()
    • Method Detail

      • render

        public void render​(T object,
                           java.lang.Appendable appendable)
                    throws java.io.IOException
        Description copied from interface: Renderer
        Renders object as plain text, appended directly to appendable. Should never throw any exceptions except if appendable throws an IOException.
        Specified by:
        render in interface Renderer<T>
        Throws:
        java.io.IOException