Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711197 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2015-10-29 09:28:38 +00:00
parent 1396738460
commit fa5fc2e65e
3 changed files with 5 additions and 6 deletions

View File

@ -21,7 +21,6 @@ import java.awt.Color;
import java.awt.Graphics2D;
import org.apache.poi.sl.usermodel.GroupShape;
import org.apache.poi.sl.usermodel.StrokeStyle;
import org.apache.poi.sl.usermodel.StrokeStyle.LineCompound;
import org.apache.poi.sl.usermodel.StrokeStyle.LineDash;
import org.apache.poi.sl.usermodel.TableCell;
@ -74,7 +73,7 @@ public class DrawTableShape extends DrawShape {
* An empty args parameter removes the affected border.
*
* @param args a varargs array possible containing {@link Double} (width),
* {@link StrokeStyle.LineCompound}, {@link Color}, {@link StrokeStyle.LineDash}
* {@link LineCompound}, {@link Color}, {@link LineDash}
*/
public void setAllBorders(Object... args) {
TableShape<?,?> table = getShape();
@ -96,7 +95,7 @@ public class DrawTableShape extends DrawShape {
* An empty args parameter removes the affected border.
*
* @param args a varargs array possible containing {@link Double} (width),
* {@link StrokeStyle.LineCompound}, {@link Color}, {@link StrokeStyle.LineDash}
* {@link LineCompound}, {@link Color}, {@link LineDash}
*/
public void setOutsideBorders(Object... args){
if (args.length == 0) return;
@ -122,7 +121,7 @@ public class DrawTableShape extends DrawShape {
* An empty args parameter removes the affected border.
*
* @param args a varargs array possible containing {@link Double} (width),
* {@link StrokeStyle.LineCompound}, {@link Color}, {@link StrokeStyle.LineDash}
* {@link LineCompound}, {@link Color}, {@link LineDash}
*/
public void setInsideBorders(Object... args) {
if (args.length == 0) return;

View File

@ -820,7 +820,7 @@ public class XDGFShape extends XDGFSheet {
* @return returns bounds as a path in local coordinates, which is
* userful if you need to transform to global coordinates
*
* @warning Don't use this for 1d objects, and will fail for
* Warning: Don't use this for 1d objects, and will fail for
* infinite line objects
*/
public Path2D.Double getBoundsAsPath() {

View File

@ -690,7 +690,7 @@ public class XSSFSheet extends POIXMLDocumentPart implements Sheet {
/**
* Get a list of Hyperlinks in this sheet
*
* @return
* @return Hyperlinks for the sheet
*/
public List<XSSFHyperlink> getHyperlinkList() {
return Collections.unmodifiableList(hyperlinks);