Interface CoordinatesTransformer

  • All Known Implementing Classes:
    LookupHeadersTransformer, TwoDimensionDecisionTableTransformer

    public interface CoordinatesTransformer
    Class that represents transformer of coordinates inside logical table.

    Coordinates of logical table will be transformed into coordinates of source table.

    Author:
    PUdalau
    • Method Detail

      • getHeight

        int getHeight()
        Returns:
        The height of logical table.
      • getWidth

        int getWidth()
        Returns:
        The width of logical table.
      • getColumn

        int getColumn​(int col,
                      int row)
        Parameters:
        col - The column of logical table.
        row - The row of logical table.
        Returns:
        Coordinates inside the source table.
      • getRow

        int getRow​(int col,
                   int row)
        Parameters:
        col - The column of logical table.
        row - The row of logical table.
        Returns:
        Coordinates inside the source table.