Browse Source

bug 60216: javadocx fix for Comment#isVisible and Comment#setVisible; patch from Daniel Kueppers

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763757 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_16_BETA1
Javen O'Neal 7 years ago
parent
commit
21627eb1ab

+ 2
- 2
src/java/org/apache/poi/hssf/usermodel/HSSFComment.java View File

@@ -143,7 +143,7 @@ public class HSSFComment extends HSSFTextbox implements Comment {
}

/**
* Returns whether this comment is visible.
* Sets whether this comment is visible.
*
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
@@ -154,7 +154,7 @@ public class HSSFComment extends HSSFTextbox implements Comment {
}

/**
* Sets whether this comment is visible.
* Returns whether this comment is visible.
*
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/

+ 2
- 2
src/java/org/apache/poi/ss/usermodel/Comment.java View File

@@ -22,14 +22,14 @@ import org.apache.poi.ss.util.CellAddress;
public interface Comment {

/**
* Returns whether this comment is visible.
* Sets whether this comment is visible.
*
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
void setVisible(boolean visible);

/**
* Sets whether this comment is visible.
* Returns whether this comment is visible.
*
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/

+ 6
- 2
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java View File

@@ -102,7 +102,9 @@ public class XSSFComment implements Comment {
}

/**
* @return whether the comment is visible
* Returns whether this comment is visible.
*
* @return <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
@Override
public boolean isVisible() {
@@ -115,7 +117,9 @@ public class XSSFComment implements Comment {
}

/**
* @param visible whether the comment is visible
* Sets whether this comment is visible.
*
* @param visible <code>true</code> if the comment is visible, <code>false</code> otherwise
*/
@Override
public void setVisible(boolean visible) {

Loading…
Cancel
Save