]> source.dussan.org Git - poi.git/commitdiff
Fix some JavaDoc items that are reported in the build-output
authorDominik Stadler <centic@apache.org>
Wed, 25 Dec 2013 18:05:41 +0000 (18:05 +0000)
committerDominik Stadler <centic@apache.org>
Wed, 25 Dec 2013 18:05:41 +0000 (18:05 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1553404 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/poi/hssf/model/InternalWorkbook.java
src/java/org/apache/poi/hssf/usermodel/HSSFPatriarch.java
src/java/org/apache/poi/ss/format/SimpleFraction.java
src/java/org/apache/poi/util/CodePageUtil.java
src/scratchpad/src/org/apache/poi/hwpf/model/FileInformationBlock.java

index 0e51637e918093434e8e78643f1c3ddbb6d2dffd..4b4a11f9c99df58f62c0a2883d27c7455d163e5b 100644 (file)
@@ -808,7 +808,7 @@ public final class InternalWorkbook {
 
 
     /**
-     * creates a new Cell-type Extneded Format Record and adds it to the end of
+     * creates a new Cell-type Extended Format Record and adds it to the end of
      *  ExtendedFormatRecords collection
      *
      * @return ExtendedFormatRecord that was created
index 6d61b22d5653801e1982947faaafe2cdc0a7e7f9..46395b51c8d09effb73fd84e1d4756ad527f5891 100644 (file)
 package org.apache.poi.hssf.usermodel;
 
 import java.io.FileNotFoundException;
-import java.util.*;
-
-import org.apache.poi.ddf.*;
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.HashSet;
+import java.util.Iterator;
+import java.util.List;
+import java.util.Map;
+import java.util.Set;
+
+import org.apache.poi.ddf.EscherComplexProperty;
+import org.apache.poi.ddf.EscherContainerRecord;
+import org.apache.poi.ddf.EscherDgRecord;
+import org.apache.poi.ddf.EscherOptRecord;
+import org.apache.poi.ddf.EscherProperty;
+import org.apache.poi.ddf.EscherSpRecord;
+import org.apache.poi.ddf.EscherSpgrRecord;
 import org.apache.poi.hssf.model.DrawingManager2;
 import org.apache.poi.hssf.record.CommonObjectDataSubRecord;
 import org.apache.poi.hssf.record.EmbeddedObjectRefSubRecord;
@@ -206,7 +218,7 @@ public final class HSSFPatriarch implements HSSFShapeContainer, Drawing {
      * 
      * @param anchor       the client anchor describes how this picture is
      *                     attached to the sheet.
-     * @param storageId    the storageId returned by {@Link HSSFWorkbook.addOlePackage}
+     * @param storageId    the storageId returned by {@link HSSFWorkbook.addOlePackage}
      * @param pictureIndex the index of the picture (used as preview image) in the
      *                     workbook collection of pictures.
      *
index 1452b520f75a277b06555dcd6b64009a1863c6fd..41d0a2aa832ebe1e7693ca4e006a4f6abe96af60 100644 (file)
@@ -29,7 +29,7 @@ public class SimpleFraction {
      * 
      * @param val double value of fraction
      * @param exactDenom the exact denominator
-     * @return
+     * @return a SimpleFraction with the given values set.
      */
     public static SimpleFraction buildFractionExactDenominator(double val, int exactDenom){
         int num =  (int)Math.round(val*(double)exactDenom);
index 47fcb9d2872c854f7b8500b921a4887884a29e68..c8a629f44729ace579984b84a1512f7ba8bc6103 100644 (file)
@@ -263,7 +263,7 @@ public class CodePageUtil
      * @return The character encoding's name, in either Java Lang format 
      *  (eg Cp1251, ISO8859_5) or Java NIO format (eg windows-1252, ISO-8859-9)
      *  
-     * @see http://docs.oracle.com/javase/6/docs/technotes/guides/intl/encoding.doc.html
+     * See <a href="http://docs.oracle.com/javase/6/docs/technotes/guides/intl/encoding.doc.html">Encodings supported by Java</a>
      *
      * @exception UnsupportedEncodingException if the specified codepage is
      * less than zero.
index 89161055da018662162ab428717396f9924f805e..34d272b4ecfce8b8e80be9edb93ed81d0f2c2310 100644 (file)
@@ -23,7 +23,6 @@ import java.lang.reflect.Modifier;
 import java.util.HashSet;
 
 import org.apache.poi.EncryptedDocumentException;
-
 import org.apache.poi.hwpf.model.io.HWPFOutputStream;
 import org.apache.poi.util.Internal;
 import org.apache.poi.util.LittleEndian;