Update Javadoc somewhat

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1568555 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Dominik Stadler 2014-02-15 00:19:32 +00:00
parent 2b85b00690
commit 9b4121cb45
3 changed files with 16 additions and 2 deletions

View File

@ -113,6 +113,14 @@ public abstract class CellRangeAddressBase {
return _lastRow;
}
/**
* Determines if the given coordinates lie within the bounds
* of this range.
*
* @param rowInd The row, 0-based.
* @param colInd The column, 0-based.
* @return True if the coordinates lie within the bounds, false otherwise.
*/
public boolean isInRange(int rowInd, int colInd) {
return _firstRow <= rowInd && rowInd <= _lastRow &&
_firstCol <= colInd && colInd <= _lastCol;

View File

@ -17,6 +17,7 @@
package org.apache.poi.xssf.usermodel;
import org.apache.poi.ss.usermodel.CreationHelper;
import org.apache.poi.ss.usermodel.Hyperlink;
public class XSSFCreationHelper implements CreationHelper {
private XSSFWorkbook workbook;
@ -38,6 +39,11 @@ public class XSSFCreationHelper implements CreationHelper {
return workbook.createDataFormat();
}
/**
* Create a new XSSFHyperlink.
*
* @param type - the type of hyperlink to create, see {@link Hyperlink}
*/
public XSSFHyperlink createHyperlink(int type) {
return new XSSFHyperlink(type);
}

View File

@ -40,7 +40,7 @@ public class XSSFHyperlink implements Hyperlink {
/**
* Create a new XSSFHyperlink. This method is protected to be used only by XSSFCreationHelper
*
* @param type - the type of hyperlink to create
* @param type - the type of hyperlink to create, see {@link Hyperlink}
*/
protected XSSFHyperlink(int type) {
_type = type;