aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/poi/sl
diff options
context:
space:
mode:
authorNick Burch <nick@apache.org>2015-10-29 09:28:38 +0000
committerNick Burch <nick@apache.org>2015-10-29 09:28:38 +0000
commite43d36f06d1c50f79347c30e07c939dd6592fd29 (patch)
treec86ccb0731e33141bfe6ae9fd8b4d65a520cf588 /src/java/org/apache/poi/sl
parent2535839b7070c51cbc49f46c7a129c62e1c8a9b1 (diff)
downloadpoi-e43d36f06d1c50f79347c30e07c939dd6592fd29.tar.gz
poi-e43d36f06d1c50f79347c30e07c939dd6592fd29.zip
Javadoc fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711197 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/sl')
-rw-r--r--src/java/org/apache/poi/sl/draw/DrawTableShape.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/java/org/apache/poi/sl/draw/DrawTableShape.java b/src/java/org/apache/poi/sl/draw/DrawTableShape.java
index ec44d17d6b..b44427838a 100644
--- a/src/java/org/apache/poi/sl/draw/DrawTableShape.java
+++ b/src/java/org/apache/poi/sl/draw/DrawTableShape.java
@@ -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;