Interface IBufferedRegion

All Superinterfaces:
ISavable
All Known Implementing Classes:
BufferedAttribute, BufferedDocument, BufferedElement, BufferedEndTagElement, BufferedRegion, BufferedRegionAdpater, BufferedStartTagElement, BufferedTagElement, RowBufferedRegion, StringBufferedRegion, TableBufferedRegion, TransformedBufferedDocument

public interface IBufferedRegion extends ISavable
Interface for buffered region.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Add a the given buffered region to the buffer.
    void
    append(char c)
    Append the given content to the buffer.
    void
    append(char[] ch, int start, int length)
    Append the given char array to the buffer.
    void
    append(String content)
    Append the given content to the buffer.
    Returns the parent buffered region.
    boolean
    Returns true if buffered region is a String and false otherwise.

    Methods inherited from interface fr.opensagres.xdocreport.document.preprocessor.sax.ISavable

    getOwnerElement, save
  • Method Details

    • isString

      boolean isString()
      Returns true if buffered region is a String and false otherwise.
      Returns:
    • append

      void append(String content)
      Append the given content to the buffer.
      Parameters:
      content -
    • append

      void append(char[] ch, int start, int length)
      Append the given char array to the buffer.
      Parameters:
      ch -
      start -
      length -
    • append

      void append(char c)
      Append the given content to the buffer.
      Parameters:
      content -
    • addRegion

      void addRegion(ISavable region)
      Add a the given buffered region to the buffer.
      Parameters:
      region -
    • getParent

      IBufferedRegion getParent()
      Returns the parent buffered region.
      Returns: