Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1763399 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2016-10-05 10:39:03 +00:00
parent d106d31934
commit 4ffc48f7f7

View File

@ -39,12 +39,12 @@ import org.apache.poi.ss.usermodel.Workbook;
* draw all the borders for a single sheet. That template can be applied to any * draw all the borders for a single sheet. That template can be applied to any
* sheet in any workbook. * sheet in any workbook.
* *
* This class requires the full spreadsheet to be in memory so {@link SWorkbook} * This class requires the full spreadsheet to be in memory, so
* Spreadsheets are not supported. The same {@link PropertyTemplate} can, * {@link org.apache.poi.xssf.streaming.SXSSFWorkbook} Spreadsheets are not
* however, be applied to both * supported. The same {@link PropertyTemplate} can, however, be applied to both
* {@link HSSFWorkbook}, and XSSFWorkbook objects if * {@link HSSFWorkbook} and {@link org.apache.poi.xssf.usermodel.XSSFWorkbook}
* necessary. Portions of the border that fall outside the max range of the * objects if necessary. Portions of the border that fall outside the max range
* {@link HSSFWorkbook} sheet are ignored. * of the {@link Workbook} sheet are ignored.
* </p> * </p>
* *
* <p> * <p>
@ -954,8 +954,8 @@ public final class PropertyTemplate {
* Converts a Short object to a short value or 0 if the object is not a * Converts a Short object to a short value or 0 if the object is not a
* Short * Short
* *
* @param value * @param value Potentially short value to convert
* @return * @return short value, or 0 if not a short
*/ */
private static short getShort(Object value) { private static short getShort(Object value) {
if (value instanceof Short) { if (value instanceof Short) {
@ -963,4 +963,4 @@ public final class PropertyTemplate {
} }
return 0; return 0;
} }
} }