summaryrefslogtreecommitdiffstats
path: root/src/java
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2013-07-15 21:45:21 +0000
committerNick Burch <nick@apache.org>2013-07-15 21:45:21 +0000
commite1cf345671ba07013bf6e50d83b0caf21efe5e40 (patch)
treeb99670002b455b9ca43ae68e7f277f384f25cda5 /src/java
parent11ceaebac6cf26257f95171ebba45bac7f888eb4 (diff)
downloadpoi-e1cf345671ba07013bf6e50d83b0caf21efe5e40.tar.gz
poi-e1cf345671ba07013bf6e50d83b0caf21efe5e40.zip
Ensure the interface and implementation javadocs share the same warnings, and paragraph-ise to look nicer
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1503491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java')
-rw-r--r--src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java8
-rw-r--r--src/java/org/apache/poi/ss/usermodel/Sheet.java5
2 files changed, 8 insertions, 5 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
index e0e3503edb..76008ddab3 100644
--- a/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
+++ b/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java
@@ -1798,10 +1798,10 @@ public final class HSSFSheet implements org.apache.poi.ss.usermodel.Sheet {
}
/**
- * Creates the top-level drawing patriarch. This will have
- * the effect of removing any existing drawings on this
- * sheet.
- * This may then be used to add graphics or charts
+ * Creates the top-level drawing patriarch.
+ * <p>This may then be used to add graphics or charts.</p>
+ * <p>Note that this will normally have the effect of removing
+ * any existing drawings on this sheet.</p>
*
* @return The new patriarch.
*/
diff --git a/src/java/org/apache/poi/ss/usermodel/Sheet.java b/src/java/org/apache/poi/ss/usermodel/Sheet.java
index 8b6b41678f..91caad02ff 100644
--- a/src/java/org/apache/poi/ss/usermodel/Sheet.java
+++ b/src/java/org/apache/poi/ss/usermodel/Sheet.java
@@ -860,7 +860,10 @@ public interface Sheet extends Iterable<Row> {
Comment getCellComment(int row, int column);
/**
- * Creates the top-level drawing patriarch.
+ * Creates the top-level drawing patriarch.
+ * <p>This may then be used to add graphics or charts.</p>
+ * <p>Note that this will normally have the effect of removing
+ * any existing drawings on this sheet.</p>
*
* @return The new drawing patriarch.
*/