You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ye...@apache.org on 2010/06/06 20:19:09 UTC

svn commit: r951920 - in /poi/trunk/src: java/org/apache/poi/hssf/eventusermodel/ java/org/apache/poi/hssf/record/ java/org/apache/poi/hssf/record/aggregates/ java/org/apache/poi/hssf/record/common/ java/org/apache/poi/hssf/record/formula/functions/ ja...

Author: yegor
Date: Sun Jun  6 18:19:08 2010
New Revision: 951920

URL: http://svn.apache.org/viewvc?rev=951920&view=rev
Log:
cleaned javadoc warnings

Modified:
    poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java
    poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java
    poi/trunk/src/java/org/apache/poi/hssf/record/NameRecord.java
    poi/trunk/src/java/org/apache/poi/hssf/record/RecordInputStream.java
    poi/trunk/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java
    poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java
    poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatProtection.java
    poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatSmartTag.java
    poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/TextFunction.java
    poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java
    poi/trunk/src/java/org/apache/poi/poifs/storage/RawDataBlock.java
    poi/trunk/src/java/org/apache/poi/ss/format/CellFormatter.java
    poi/trunk/src/java/org/apache/poi/ss/formula/TwoDEval.java
    poi/trunk/src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java
    poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java
    poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/Table.java
    poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
    poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java
    poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/ByteChunk.java
    poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/MessageSubmissionChunk.java
    poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java
    poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestFind.java

Modified: poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFEventFactory.java Sun Jun  6 18:19:08 2010
@@ -34,8 +34,6 @@ import org.apache.poi.poifs.filesystem.P
  * a static id matching one that you have registered in your HSSFRequest will be passed
  * to your associated HSSFListener.
  *
- * @see org.apache.poi.hssf.dev.EFHSSF
- *
  * @author Andrew C. Oliver (acoliver at apache dot org)
  * @author Carey Sublette  (careysub@earthling.net)
  */
@@ -59,7 +57,7 @@ public class HSSFEventFactory {
     * Processes a file into essentially record events.
     *
     * @param req an Instance of HSSFRequest which has your registered listeners
-    * @param fs  a POIFS filesystem containing your workbook
+    * @param dir  a DirectoryNode containing your workbook
     */
    public void processWorkbookEvents(HSSFRequest req, DirectoryNode dir) throws IOException {
       InputStream in = dir.createDocumentInputStream("Workbook");
@@ -83,7 +81,7 @@ public class HSSFEventFactory {
 	 * Processes a file into essentially record events.
 	 *
 	 * @param req an Instance of HSSFRequest which has your registered listeners
-	 * @param fs  a POIFS filesystem containing your workbook
+	 * @param dir  a DirectoryNode containing your workbook
 	 * @return    numeric user-specified result code.
 	 */
 	public short abortableProcessWorkbookEvents(HSSFRequest req, DirectoryNode dir)

Modified: poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java Sun Jun  6 18:19:08 2010
@@ -31,7 +31,6 @@ import org.apache.poi.hssf.record.Record
  *
  * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
  * @see org.apache.poi.hssf.eventusermodel.HSSFListener
- * @see org.apache.poi.hssf.dev.EFHSSF
  * @see org.apache.poi.hssf.eventusermodel.HSSFUserException
  * @author  Andrew C. Oliver (acoliver at apache dot org)
  * @author Carey Sublette (careysub@earthling.net)

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/NameRecord.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/NameRecord.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/NameRecord.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/NameRecord.java Sun Jun  6 18:19:08 2010
@@ -242,7 +242,7 @@ public final class NameRecord extends St
 	 * Indicates that the defined name refers to a user-defined function.
 	 * This attribute is used when there is an add-in or other code project associated with the file.
 	 *
-	 * @param value <code>true</code> indicates the name refers to a function.
+	 * @param function <code>true</code> indicates the name refers to a function.
 	 */
 	public void setFunction(boolean function){
 		if (function) {

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/RecordInputStream.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/RecordInputStream.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/RecordInputStream.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/RecordInputStream.java Sun Jun  6 18:19:08 2010
@@ -431,7 +431,7 @@ public final class RecordInputStream imp
 	}
 
     /**
-     @requrn sid of next record. Can be called after hasNextRecord()  
+     @return sid of next record. Can be called after hasNextRecord()
      */
     public int getNextSid() {
         return _nextSid;

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/aggregates/SharedValueManager.java Sun Jun  6 18:19:08 2010
@@ -154,12 +154,6 @@ public final class SharedValueManager {
 	}
 
 	/**
-	 * @param firstCells
-	 * @param recs list of sheet records (possibly contains records for other parts of the Excel file)
-	 * @param startIx index of first row/cell record for current sheet
-	 * @param endIx one past index of last row/cell record for current sheet.  It is important
-	 * that this code does not inadvertently collect <tt>SharedFormulaRecord</tt>s from any other
-	 * sheet (which could happen if endIx is chosen poorly).  (see bug 44449)
 	 */
 	public static SharedValueManager create(SharedFormulaRecord[] sharedFormulaRecords,
 			CellReference[] firstCells, ArrayRecord[] arrayRecords, TableRecord[] tableRecords) {

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatFormulaErr2.java Sun Jun  6 18:19:08 2010
@@ -30,8 +30,7 @@ import org.apache.poi.util.LittleEndianO
  * <P>
  * This record part specifies Formula Evaluation & Error Ignoring data 
  *  for a sheet, stored as part of a Shared Feature. It can be found in 
- *  records such as {@link FeatRecord}, {@link Feat11Record} or
- *  {@link Feat12Record}.
+ *  records such as {@link FeatRecord}.
  * For the full meanings of the flags, see pages 669 and 670
  *  of the Excel binary file format documentation.
  */

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatProtection.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatProtection.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatProtection.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatProtection.java Sun Jun  6 18:19:08 2010
@@ -31,8 +31,7 @@ import org.apache.poi.util.StringUtil;
  * <P>
  * This record part specifies Protection data for a sheet, stored
  *  as part of a Shared Feature. It can be found in records such
- *  as {@link FeatRecord}, {@link Feat11Record} or
- *  {@link Feat12Record}  
+ *  as {@link FeatRecord}
  */
 public final class FeatProtection implements SharedFeature {
 	public static long NO_SELF_RELATIVE_SECURITY_FEATURE = 0;

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatSmartTag.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatSmartTag.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatSmartTag.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/common/FeatSmartTag.java Sun Jun  6 18:19:08 2010
@@ -27,8 +27,7 @@ import org.apache.poi.util.LittleEndianO
  * Title: FeatSmartTag (Smart Tag Shared Feature) common record part
  * <P>
  * This record part specifies Smart Tag data for a sheet, stored as part
- *  of a Shared Feature. It can be found in records such as 
- *  {@link FeatRecord}, {@link Feat11Record} or {@link Feat12Record}.
+ *  of a Shared Feature. It can be found in records such as  {@link FeatRecord}.
  * It is made up of a hash, and a set of Factoid Data that makes up
  *  the smart tags.
  * For more details, see page 669 of the Excel binary file

Modified: poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/TextFunction.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/TextFunction.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/TextFunction.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/record/formula/functions/TextFunction.java Sun Jun  6 18:19:08 2010
@@ -353,7 +353,7 @@ public abstract class TextFunction imple
 	 * <tt>start_num</tt>, is optional (default=1) and specifies where to start searching
 	 * from.  Character positions are 1-based.<p/>
 	 *
-	 * @author Torstein Tauno Svendsen (torstei@officenet.no)
+	 * Author: Torstein Tauno Svendsen (torstei@officenet.no)
 	 */
 	public static final Function FIND = new SearchFind(true);
 	/**

Modified: poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java (original)
+++ poi/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFDataFormat.java Sun Jun  6 18:19:08 2010
@@ -96,7 +96,7 @@ public final class HSSFDataFormat implem
 	 * Get the format index that matches the given format
 	 *  string, creating a new format entry if required.
 	 * Aliases text to the proper format as required.
-	 * @param format string matching a built in format
+	 * @param pFormat string matching a built in format
 	 * @return index of format.
 	 */
 	public short getFormat(String pFormat) {

Modified: poi/trunk/src/java/org/apache/poi/poifs/storage/RawDataBlock.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/poifs/storage/RawDataBlock.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/poifs/storage/RawDataBlock.java (original)
+++ poi/trunk/src/java/org/apache/poi/poifs/storage/RawDataBlock.java Sun Jun  6 18:19:08 2010
@@ -57,7 +57,8 @@ public class RawDataBlock
      * Constructor RawDataBlock
      *
      * @param stream the InputStream from which the data will be read
-     * @param blockSize the size of the POIFS blocks, normally 512 bytes {@link POIFSConstants#BIG_BLOCK_SIZE}
+     * @param blockSize the size of the POIFS blocks, normally 512 bytes
+     * {@link org.apache.poi.poifs.common.POIFSConstants#SMALLER_BIG_BLOCK_SIZE}
      *
      * @exception IOException on I/O errors, and if an insufficient
      *            amount of data is read (the InputStream must

Modified: poi/trunk/src/java/org/apache/poi/ss/format/CellFormatter.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/format/CellFormatter.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/format/CellFormatter.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/format/CellFormatter.java Sun Jun  6 18:19:08 2010
@@ -22,7 +22,7 @@ import java.util.logging.Logger;
 /**
  * This is the abstract supertype for the various cell formatters.
  *
- * @@author Ken Arnold, Industrious Media LLC
+ * @author Ken Arnold, Industrious Media LLC
  */
 public abstract class CellFormatter {
     /** The original specified format. */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/TwoDEval.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/TwoDEval.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/TwoDEval.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/TwoDEval.java Sun Jun  6 18:19:08 2010
@@ -21,7 +21,7 @@ import org.apache.poi.hssf.record.formul
 import org.apache.poi.hssf.record.formula.eval.ValueEval;
 
 /**
- * Common interface of {@link AreaEval} and {@link ArrayEval}
+ * Common interface of {@link AreaEval} and {@link org.apache.poi.hssf.record.formula.eval.AreaEvalBase}
  *
  * @author Josh Micich
  */

Modified: poi/trunk/src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/formula/eval/forked/ForkedEvaluator.java Sun Jun  6 18:19:08 2010
@@ -104,7 +104,9 @@ public final class ForkedEvaluator {
 	 * evaluateInCell() when the call should not modify the contents of the
 	 * original cell.
 	 *
-	 * @param cell may be <code>null</code> signifying that the cell is not present (or blank)
+     * @param sheetName the name of the sheet containing the cell
+     * @param rowIndex zero based
+     * @param columnIndex zero based
 	 * @return <code>null</code> if the supplied cell is <code>null</code> or blank
 	 */
 	public ValueEval evaluate(String sheetName, int rowIndex, int columnIndex) {

Modified: poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java (original)
+++ poi/trunk/src/java/org/apache/poi/ss/usermodel/BuiltinFormats.java Sun Jun  6 18:19:08 2010
@@ -172,7 +172,7 @@ public final class BuiltinFormats {
 	 * <p/>
 	 * Automatically converts "text" to excel's format string to represent text.
 	 * </p>
-	 * @param fmt string matching a built-in format
+	 * @param pFmt string matching a built-in format
 	 * @return index of format or -1 if undefined.
 	 */
 	public static int getBuiltinFormat(String pFmt) {

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/MapInfo.java Sun Jun  6 18:19:08 2010
@@ -100,9 +100,9 @@ public class MapInfo extends POIXMLDocum
 	}
 
 	/**
-	 * Gets the CTSchema buy it's ID
+	 * Gets the
 	 * @param schemaId the schema ID
-	 * @return 
+	 * @return CTSchema by it's ID
 	 */
 	public CTSchema getCTSchemaById(String schemaId){
 		CTSchema xmlSchema = null;

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/Table.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/Table.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/Table.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xssf/model/Table.java Sun Jun  6 18:19:08 2010
@@ -187,8 +187,7 @@ public class Table extends POIXMLDocumen
 	}
 
 	/**
-	 *  the number of mapped table columns (see Open Office XML Part 4: chapter 3.5.1.4)
-	 * @return 
+	 * @return  the number of mapped table columns (see Open Office XML Part 4: chapter 3.5.1.4)
 	 */
 	public long getNumerOfMappedColumns(){
 		return ctTable.getTableColumns().getCount();
@@ -196,9 +195,9 @@ public class Table extends POIXMLDocumen
 	
 	
 	/**
-	 * The reference for the cell in the top-left part of the table 
+	 * @return The reference for the cell in the top-left part of the table
 	 * (see Open Office XML Part 4: chapter 3.5.1.2, attribute ref) 
-	 * @return
+	 *
 	 */
 	public CellReference getStartCellReference() {
 		
@@ -212,9 +211,9 @@ public class Table extends POIXMLDocumen
 	}
 	
 	/**
-	 * The reference for the cell in the bottom-right part of the table
+	 * @return The reference for the cell in the bottom-right part of the table
 	 * (see Open Office XML Part 4: chapter 3.5.1.2, attribute ref)
-	 * @return
+	 *
 	 */
 	public CellReference getEndCellReference() {
 		
@@ -230,8 +229,8 @@ public class Table extends POIXMLDocumen
 	
 	
 	/**
-	 * Gets the total number of rows in the selection. (Note: in this version autofiltering is ignored)
-	 * @return 
+	 *  @return the total number of rows in the selection. (Note: in this version autofiltering is ignored)
+	 *
 	 */
 	public int getRowCount(){
 		

Modified: poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/xwpf/usermodel/XWPFParagraph.java Sun Jun  6 18:19:08 2010
@@ -987,8 +987,7 @@ public class XWPFParagraph {
     }
     
     /**
-     * Gets the style of the paragraph
-     * @return
+     * @return  the style of the paragraph
      */
     public String getStyle() {
     	CTPPr pr = getCTPPr();

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/MAPIMessage.java Sun Jun  6 18:19:08 2010
@@ -85,7 +85,7 @@ public class MAPIMessage extends POIDocu
    }
    /**
     * Constructor for reading MSG Files from a POIFS filesystem
-    * @param in
+    * @param fs
     * @throws IOException
     */
    public MAPIMessage(POIFSFileSystem fs) throws IOException {
@@ -94,7 +94,8 @@ public class MAPIMessage extends POIDocu
    /**
     * Constructor for reading MSG Files from a certain
     *  point within a POIFS filesystem
-    * @param in
+    * @param poifsDir
+    * @param fs
     * @throws IOException
     */
    public MAPIMessage(DirectoryNode poifsDir, POIFSFileSystem fs) throws IOException {

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/ByteChunk.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/ByteChunk.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/ByteChunk.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/ByteChunk.java Sun Jun  6 18:19:08 2010
@@ -68,7 +68,7 @@ public class ByteChunk extends Chunk {
     * If your data isn't in fact stored as basically
     *  ASCII, don't expect this to return much of any
     *  sense.... 
-    * @return
+    * @return  the data formatted as a string
     */
    public String getAs7bitString() {
       return StringChunk.parseAs7BitData(value);

Modified: poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/MessageSubmissionChunk.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/MessageSubmissionChunk.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/MessageSubmissionChunk.java (original)
+++ poi/trunk/src/scratchpad/src/org/apache/poi/hsmf/datatypes/MessageSubmissionChunk.java Sun Jun  6 18:19:08 2010
@@ -103,16 +103,16 @@ public class MessageSubmissionChunk exte
    }
    
    /**
-    * Returns the date that the server accepted the
+    * @return the date that the server accepted the
     *  message, as found from the message ID it generated.
-    * @return
+    *
     */
    public Calendar getAcceptedAtTime() {
       return date;
    }
    
    /**
-    * Returns the full ID that the server generated when
+    * @return the full ID that the server generated when
     *  it accepted the message.
     */
    public String getSubmissionId() {

Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestCountFuncs.java Sun Jun  6 18:19:08 2010
@@ -236,7 +236,7 @@ public final class TestCountFuncs extend
 	}
 
 	/**
-	 * the criteria arg is mostly handled by {@link OperandResolver#getSingleValue(Eval, int, short)}
+	 * the criteria arg is mostly handled by {@link OperandResolver#getSingleValue(org.apache.poi.hssf.record.formula.eval.ValueEval, int, int)}}
 	 */
 	public void testCountifAreaCriteria() {
 		int srcColIx = 2; // anything but column A

Modified: poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestFind.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestFind.java?rev=951920&r1=951919&r2=951920&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestFind.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/hssf/record/formula/functions/TestFind.java Sun Jun  6 18:19:08 2010
@@ -26,7 +26,7 @@ import org.apache.poi.hssf.usermodel.HSS
 import org.apache.poi.ss.usermodel.CellValue;
 
 /**
- * Tests for {@link Find}
+ * Tests for {@link Financed}
  * 
  * @author Torstein Svendsen (torstei@officenet.no)
  */



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org