Browse Source

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
tags/REL_3_10_BETA2
Nick Burch 11 years ago
parent
commit
e1cf345671

+ 4
- 4
src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java View File

@@ -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.
*/

+ 4
- 1
src/java/org/apache/poi/ss/usermodel/Sheet.java View File

@@ -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.
*/

Loading…
Cancel
Save