Browse Source

Javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711197 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_3_14_BETA1
Nick Burch 8 years ago
parent
commit
e43d36f06d

+ 3
- 4
src/java/org/apache/poi/sl/draw/DrawTableShape.java 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;

+ 1
- 1
src/ooxml/java/org/apache/poi/xdgf/usermodel/XDGFShape.java 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() {

+ 1
- 1
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java 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);

Loading…
Cancel
Save