Interface PageElement


  • public interface PageElement

    Interface that represents an update to a region of a Page.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getColumn()
      The column (horizontal) coordinate of the start of the updated region.
      int getRow()
      The row (vertical) cooordinate of the start of the updated region.
      java.lang.String getText()
      Gets the updated text for the region of the Page.
    • Method Detail

      • getColumn

        int getColumn()

        The column (horizontal) coordinate of the start of the updated region.

        Returns:
        The column (in characters), where the first (leftmost) column of the page is at X=0.
      • getRow

        int getRow()

        The row (vertical) cooordinate of the start of the updated region.

        Returns:
        The row (in characters), where the first (topmost) row of the page is at Y=0.
      • getText

        java.lang.String getText()

        Gets the updated text for the region of the Page.

        Returns:
        The text.