]> source.dussan.org Git - poi.git/commitdiff
bug 60216: javadocx fix for Comment#isVisible and Comment#setVisible; patch from...
authorJaven O'Neal <onealj@apache.org>
Fri, 7 Oct 2016 12:39:15 +0000 (12:39 +0000)
committerJaven O'Neal <onealj@apache.org>
Fri, 7 Oct 2016 12:39:15 +0000 (12:39 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763757 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/usermodel/HSSFComment.java
src/java/org/apache/poi/ss/usermodel/Comment.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFComment.java

index 0013bd12e1e807ddda7a344006103e3639aa3817..593f362c4a77197d59ca8b31c6b7414d7f1e95a7 100644 (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
      */
index 311b39f6c1c69f1f5e14f46d0422285b4413d24e..c39040cfe3fee2c7205db24e925ffd93debc4bce 100644 (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
      */
index 7140e5b902d898fcdf1e79ad6ed009b7e328c912..6e69fa91ec77469e127b02482d9ddafcde745467 100644 (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) {