Package org.openl.rules.table
Interface CoordinatesTransformer
-
- All Known Implementing Classes:
LookupHeadersTransformer,TwoDimensionDecisionTableTransformer
public interface CoordinatesTransformerClass that represents transformer of coordinates inside logical table. Coordinates of logical table will be transformed into coordinates of source table.- Author:
- PUdalau
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetColumn(int col, int row)intgetHeight()intgetRow(int col, int row)intgetWidth()
-
-
-
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.
-
-