add @since to javadocs

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1742882 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-05-09 05:47:49 +00:00
parent 730641576a
commit 4a3acf4de0

View File

@ -39,6 +39,7 @@ public interface Comment {
* Get the address of the cell that this comment is attached to * Get the address of the cell that this comment is attached to
* *
* @return comment cell address * @return comment cell address
* @since 3.15-beta1
*/ */
CellAddress getAddress(); CellAddress getAddress();
@ -46,6 +47,7 @@ public interface Comment {
* Set the address of the cell that this comment is attached to * Set the address of the cell that this comment is attached to
* *
* @param addr * @param addr
* @since 3.15-beta1
*/ */
void setAddress(CellAddress addr); void setAddress(CellAddress addr);
@ -54,6 +56,7 @@ public interface Comment {
* *
* @param row * @param row
* @param col * @param col
* @since 3.15-beta1
*/ */
void setAddress(int row, int col); void setAddress(int row, int col);