]> source.dussan.org Git - poi.git/commitdiff
Javadoc fixes
authorNick Burch <nick@apache.org>
Thu, 29 Oct 2015 09:28:38 +0000 (09:28 +0000)
committerNick Burch <nick@apache.org>
Thu, 29 Oct 2015 09:28:38 +0000 (09:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1711197 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/sl/draw/DrawTableShape.java
src/ooxml/java/org/apache/poi/xdgf/usermodel/XDGFShape.java
src/ooxml/java/org/apache/poi/xssf/usermodel/XSSFSheet.java

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