Package org.openl.rules.table
Class Point
- java.lang.Object
-
- org.openl.rules.table.Point
-
public abstract class Point extends Object
Handles two coordinates: column number and row number.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static Pointget(int column, int row)abstract intgetColumn()abstract intgetRow()
-
-
-
Method Detail
-
get
public static Point get(int column, int row)
-
getColumn
public abstract int getColumn()
-
getRow
public abstract int getRow()
-
-