object-oriented methods are preferred over utility classes for discoverability
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1749245 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8dc7ee659d
commit
015cf4c86f
@ -325,6 +325,7 @@ public class SheetUtil {
|
|||||||
* @param rowIx the row to check
|
* @param rowIx the row to check
|
||||||
* @param colIx the column to check
|
* @param colIx the column to check
|
||||||
* @return true if the range contains the cell [rowIx, colIx]
|
* @return true if the range contains the cell [rowIx, colIx]
|
||||||
|
* @deprecated 3.15 beta 2. Use {@link CellRangeAddressBase#isInRange(int, int)}.
|
||||||
*/
|
*/
|
||||||
public static boolean containsCell(CellRangeAddress cr, int rowIx, int colIx) {
|
public static boolean containsCell(CellRangeAddress cr, int rowIx, int colIx) {
|
||||||
return cr.isInRange(rowIx, colIx);
|
return cr.isInRange(rowIx, colIx);
|
||||||
|
Loading…
Reference in New Issue
Block a user