klute 2003/12/06 03:01:19
Modified: src/contrib/src/org/apache/poi/hssf/contrib/view
SVTableUtils.java
src/java/org/apache/poi/hssf/eventusermodel
AbortableHSSFListener.java HSSFRequest.java
src/java/org/apache/poi/hssf/record BOFRecord.java
CodepageRecord.java ExtendedFormatRecord.java
PaletteRecord.java
src/java/org/apache/poi/hssf/record/formula Area3DPtg.java
AreaPtg.java GreaterThanPtg.java LessThanPtg.java
Ptg.java
src/java/org/apache/poi/hssf/usermodel HSSFFont.java
HSSFName.java HSSFRow.java HSSFWorkbook.java
src/java/org/apache/poi/poifs/filesystem
POIFSDocumentPath.java
src/java/org/apache/poi/poifs/storage
BlockAllocationTableWriter.java
SmallBlockTableWriter.java
src/java/org/apache/poi/util CommonsLogger.java
NullLogger.java POILogger.java StringUtil.java
src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes
CHPFormattedDiskPage.java PAPFormattedDiskPage.java
PropertyNode.java StyleSheet.java TextPiece.java
Log:
More Javadoc issues fixed. "ant javadoc" now runs without any complaints. However,
this does not mean the the documentation is fine. Please check your documentation!
Revision Changes Path
1.4 +0 -4
jakarta-poi/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableUtils.java
Index: SVTableUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/contrib/src/org/apache/poi/hssf/contrib/view/SVTableUtils.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SVTableUtils.java 4 Dec 2003 22:26:01 -0000 1.3
+++ SVTableUtils.java 6 Dec 2003 11:01:18 -0000 1.4
@@ -79,10 +79,6 @@
/**
* Creates a new font for a specific cell style
- *
- * @param wb Description of the Parameter
- * @param style Description of the Parameter
- * @return Description of the Return Value
*/
public static Font makeFont(HSSFFont font) {
boolean isbold = font.getBoldweight() > HSSFFont.BOLDWEIGHT_NORMAL;
1.4 +3 -3
jakarta-poi/src/java/org/apache/poi/hssf/eventusermodel/AbortableHSSFListener.java
Index: AbortableHSSFListener.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/eventusermodel/AbortableHSSFListener.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- AbortableHSSFListener.java 4 Dec 2003 22:26:01 -0000 1.3
+++ AbortableHSSFListener.java 6 Dec 2003 11:01:18 -0000 1.4
@@ -63,9 +63,9 @@
* a listener supporting this interface and register it with the HSSFRequest
(associating
* it with Record SID's).
*
- * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
- * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
- * @see org.apache.poi.hssf.HSSFUserException
+ * @see HSSFEventFactory
+ * @see HSSFRequest
+ * @see AbortableHSSFListener
*
* @author Carey Sublette ([EMAIL PROTECTED])
*
1.3 +3 -3
jakarta-poi/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java
Index: HSSFRequest.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/eventusermodel/HSSFRequest.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HSSFRequest.java 30 Apr 2003 04:39:19 -0000 1.2
+++ HSSFRequest.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -66,10 +66,10 @@
* An HSSFRequest object should be constructed registering an instance or multiple
* instances of HSSFListener with each Record.sid you wish to listen for.
*
- * @see org.apache.poi.hssf.eventmodel.HSSFEventFactory
- * @see org.apache.poi.hssf.eventmodel.HSSFListener
+ * @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
+ * @see org.apache.poi.hssf.eventusermodel.HSSFRequest
* @see org.apache.poi.hssf.dev.EFHSSF
- * @see org.apache.poi.hssf.HSSFUserException
+ * @see org.apache.poi.hssf.eventusermodel.HSSFUserException
* @author Andrew C. Oliver (acoliver at apache dot org)
* @author Carey Sublette ([EMAIL PROTECTED])
*/
1.6 +1 -1 jakarta-poi/src/java/org/apache/poi/hssf/record/BOFRecord.java
Index: BOFRecord.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/BOFRecord.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- BOFRecord.java 5 Dec 2003 21:53:03 -0000 1.5
+++ BOFRecord.java 6 Dec 2003 11:01:18 -0000 1.6
@@ -212,7 +212,7 @@
/**
* Year of the build that wrote this file
* @see #BUILD_YEAR
- * @param build year to set
+ * @param year year to set
*/
public void setBuildYear(short year)
1.5 +1 -1
jakarta-poi/src/java/org/apache/poi/hssf/record/CodepageRecord.java
Index: CodepageRecord.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/CodepageRecord.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- CodepageRecord.java 5 Dec 2003 21:53:03 -0000 1.4
+++ CodepageRecord.java 6 Dec 2003 11:01:18 -0000 1.5
@@ -127,7 +127,7 @@
* set the codepage for this workbook
*
* @see #CODEPAGE
- * @param the codepage to set
+ * @param cp the codepage to set
*/
public void setCodepage(short cp)
1.6 +4 -4
jakarta-poi/src/java/org/apache/poi/hssf/record/ExtendedFormatRecord.java
Index: ExtendedFormatRecord.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/ExtendedFormatRecord.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ExtendedFormatRecord.java 30 Apr 2003 04:38:47 -0000 1.5
+++ ExtendedFormatRecord.java 6 Dec 2003 11:01:18 -0000 1.6
@@ -641,8 +641,8 @@
* set whether or not to use the pattern in this XF instead of the parent XF.
* (foregrount/background)
*
- * @param pattern- true if this XF has a different pattern value than its
parent,
- * false otherwise.
+ * @param pattern true if this XF has a different pattern value than its parent,
+ * false otherwise.
* @see #setIndentionOptions(short)
*/
@@ -657,8 +657,8 @@
* set whether or not to use the locking/hidden in this XF instead of the
parent XF.
*
*
- * @param options- true if this XF has a different locking or hidden value than
its parent,
- * false otherwise.
+ * @param options true if this XF has a different locking or hidden value than
its parent,
+ * false otherwise.
* @see #setIndentionOptions(short)
*/
1.4 +2 -2
jakarta-poi/src/java/org/apache/poi/hssf/record/PaletteRecord.java
Index: PaletteRecord.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/PaletteRecord.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- PaletteRecord.java 30 Apr 2003 04:38:47 -0000 1.3
+++ PaletteRecord.java 6 Dec 2003 11:01:18 -0000 1.4
@@ -205,8 +205,8 @@
* If the given index is greater than the current last color index,
* then black is inserted at every index required to make the palette
continuous.
*
- * @param i the index to set; if this index is less than 0x8 or greater than
- * 0x40, then no modification is made
+ * @param byteIndex the index to set; if this index is less than 0x8 or
+ * greater than 0x40, then no modification is made
*/
public void setColor(short byteIndex, byte red, byte green, byte blue)
{
1.16 +2 -2
jakarta-poi/src/java/org/apache/poi/hssf/record/formula/Area3DPtg.java
Index: Area3DPtg.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/formula/Area3DPtg.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- Area3DPtg.java 31 Aug 2003 06:16:56 -0000 1.15
+++ Area3DPtg.java 6 Dec 2003 11:01:18 -0000 1.16
@@ -236,7 +236,7 @@
/**
* sets the first row to relative or not
- * @param isRelative or not.
+ * @param rel specifies whether the first row is relative or not
*/
public void setFirstRowRelative( boolean rel )
{
@@ -253,7 +253,7 @@
/**
* set whether the last row is relative or not
- * @param last row relative
+ * @param rel specifies whether the last row is relative
*/
public void setLastRowRelative( boolean rel )
{
1.17 +2 -2
jakarta-poi/src/java/org/apache/poi/hssf/record/formula/AreaPtg.java
Index: AreaPtg.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/formula/AreaPtg.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- AreaPtg.java 31 Aug 2003 06:16:56 -0000 1.16
+++ AreaPtg.java 6 Dec 2003 11:01:18 -0000 1.17
@@ -171,7 +171,7 @@
}
/**
- * @param last row number in the area
+ * @param row last row number in the area
*/
public void setLastRow(short row)
{
@@ -267,7 +267,7 @@
/**
* set whether the last row is relative or not
- * @param last row relative
+ * @param rel specifies whether the last row is relative or not
*/
public void setLastRowRelative(boolean rel) {
field_4_last_column=rowRelative.setShortBoolean(field_4_last_column,rel);
1.3 +1 -2
jakarta-poi/src/java/org/apache/poi/hssf/record/formula/GreaterThanPtg.java
Index: GreaterThanPtg.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/formula/GreaterThanPtg.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- GreaterThanPtg.java 31 Aug 2003 06:16:56 -0000 1.2
+++ GreaterThanPtg.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -131,11 +131,10 @@
/**
* Implementation of method from Ptg
- * @param refs the Sheet References
*/
public String toFormulaString(Workbook book)
{
- return this.GREATERTHAN;
+ return GreaterThanPtg.GREATERTHAN;
}
/**
1.3 +1 -2
jakarta-poi/src/java/org/apache/poi/hssf/record/formula/LessThanPtg.java
Index: LessThanPtg.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/formula/LessThanPtg.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- LessThanPtg.java 31 Aug 2003 06:16:56 -0000 1.2
+++ LessThanPtg.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -140,11 +140,10 @@
/**
* Implementation of method from Ptg
- * @param refs the Sheet References
*/
public String toFormulaString(Workbook book)
{
- return this.LESSTHAN;
+ return LessThanPtg.LESSTHAN;
}
/**
1.33 +5 -5 jakarta-poi/src/java/org/apache/poi/hssf/record/formula/Ptg.java
Index: Ptg.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/record/formula/Ptg.java,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- Ptg.java 31 Aug 2003 06:16:56 -0000 1.32
+++ Ptg.java 6 Dec 2003 11:01:18 -0000 1.33
@@ -75,16 +75,16 @@
public abstract class Ptg
{
-
- /** convert infix order ptg list to rpn order ptg list
- * @return List ptgs in RPN order
- * @param infixPtgs List of ptgs in infix order
- */
/* DO NOT REMOVE
*we keep this method in case we wish to change the way we parse
*It needs a getPrecedence in OperationsPtg
+ /** convert infix order ptg list to rpn order ptg list
+ * @return List ptgs in RPN order
+ * @param infixPtgs List of ptgs in infix order
+ */
+ /*
public static List ptgsToRpn(List infixPtgs) {
java.util.Stack operands = new java.util.Stack();
java.util.List retval = new java.util.Stack();
1.6 +3 -3 jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java
Index: HSSFFont.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFFont.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- HSSFFont.java 5 Dec 2003 21:53:03 -0000 1.5
+++ HSSFFont.java 6 Dec 2003 11:01:18 -0000 1.6
@@ -165,7 +165,7 @@
/**
* set the name for the font (i.e. Arial)
- * @param String representing the name of the font to use
+ * @param name the name of the font to use
* @see #FONT_ARIAL
*/
@@ -245,7 +245,7 @@
/**
* set whether to use italics or not
- * @param italics or not
+ * @param italic use italics or not
*/
public void setItalic(boolean italic)
@@ -359,7 +359,7 @@
/**
* set type of text underlining to use
- * @param underlining type
+ * @param underline the underlining type to use
* @see #U_NONE
* @see #U_SINGLE
* @see #U_DOUBLE
1.10 +2 -2 jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFName.java
Index: HSSFName.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFName.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- HSSFName.java 31 Aug 2003 06:16:57 -0000 1.9
+++ HSSFName.java 6 Dec 2003 11:01:18 -0000 1.10
@@ -74,8 +74,8 @@
*
* @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createName()
* @param name the Name Record
- * @param book - lowlevel Workbook object associated with the sheet.
- * @param book the Workbook */
+ * @param book lowlevel Workbook object associated with the sheet.
+ */
protected HSSFName(Workbook book, NameRecord name) {
this.book = book;
1.14 +2 -2 jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
Index: HSSFRow.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- HSSFRow.java 19 Jul 2003 02:48:16 -0000 1.13
+++ HSSFRow.java 6 Dec 2003 11:01:18 -0000 1.14
@@ -117,7 +117,7 @@
* @param book low-level Workbook object containing the sheet that contains
this row
* @param sheet low-level Sheet object that contains this Row
* @param rowNum the row number of this row (0 based)
- * @see org.apache.poi.hssf.usermodel.HSSFSheet#createRow(short)
+ * @see org.apache.poi.hssf.usermodel.HSSFSheet#createRow(int)
*/
//protected HSSFRow(Workbook book, Sheet sheet, short rowNum)
@@ -143,7 +143,7 @@
* @param book low-level Workbook object containing the sheet that contains
this row
* @param sheet low-level Sheet object that contains this Row
* @param record the low level api object this row should represent
- * @see org.apache.poi.hssf.usermodel.HSSFSheet#createRow(short)
+ * @see org.apache.poi.hssf.usermodel.HSSFSheet#createRow(int)
*/
protected HSSFRow(Workbook book, Sheet sheet, RowRecord record)
1.31 +2 -2
jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java
Index: HSSFWorkbook.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFWorkbook.java,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- HSSFWorkbook.java 4 Dec 2003 22:26:01 -0000 1.30
+++ HSSFWorkbook.java 6 Dec 2003 11:01:18 -0000 1.31
@@ -273,8 +273,8 @@
* set the sheet name.
* Will throw IllegalArgumentException if the name is greater than 31 chars
* or contains /\?*[]
- * @param sheet number (0 based)
- * @param sheet name
+ * @param sheet sheet number (0 based)
+ * @param name sheet name
*/
public void setSheetName(int sheet, String name)
1.3 +4 -6
jakarta-poi/src/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java
Index: POIFSDocumentPath.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/poifs/filesystem/POIFSDocumentPath.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- POIFSDocumentPath.java 30 Apr 2003 04:39:07 -0000 1.2
+++ POIFSDocumentPath.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -263,10 +263,9 @@
* <p>Returns the path's parent or <code>null</code> if this path
* is the root path.</p>
*
- * @author Rainer Klute ([EMAIL PROTECTED])
- * @since 2002-01-24
- *
* @return path of parent, or null if this path is the root path
+ *
+ * @since 2002-01-24
*/
public POIFSDocumentPath getParent()
@@ -288,10 +287,9 @@
* <p>Returns a string representation of the path. Components are
* separated by the platform-specific file separator.</p>
*
- * @author Rainer Klute ([EMAIL PROTECTED])
- * @since 2002-01-24
- *
* @return string representation
+ *
+ * @since 2002-01-24
*/
public String toString()
1.4 +0 -3
jakarta-poi/src/java/org/apache/poi/poifs/storage/BlockAllocationTableWriter.java
Index: BlockAllocationTableWriter.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/poifs/storage/BlockAllocationTableWriter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- BlockAllocationTableWriter.java 30 Apr 2003 04:38:57 -0000 1.3
+++ BlockAllocationTableWriter.java 6 Dec 2003 11:01:18 -0000 1.4
@@ -225,9 +225,6 @@
/**
* Set the start block for this instance
*
- * @param index index into the array of BigBlock instances making
- * up the the filesystem
- *
* @param start_block
*/
1.4 +0 -3
jakarta-poi/src/java/org/apache/poi/poifs/storage/SmallBlockTableWriter.java
Index: SmallBlockTableWriter.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/java/org/apache/poi/poifs/storage/SmallBlockTableWriter.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- SmallBlockTableWriter.java 30 Apr 2003 04:38:57 -0000 1.3
+++ SmallBlockTableWriter.java 6 Dec 2003 11:01:18 -0000 1.4
@@ -150,9 +150,6 @@
/**
* Set the start block for this instance
*
- * @param index index into the array of BigBlock instances making
- * up the the filesystem
- *
* @param start_block
*/
1.3 +0 -1 jakarta-poi/src/java/org/apache/poi/util/CommonsLogger.java
Index: CommonsLogger.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/util/CommonsLogger.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CommonsLogger.java 30 Apr 2003 04:39:08 -0000 1.2
+++ CommonsLogger.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -141,7 +141,6 @@
* Check if a logger is enabled to log at the specified level
*
* @param level One of DEBUG, INFO, WARN, ERROR, FATAL
- * @param obj1 The logger to check.
*/
public boolean check(final int level)
1.3 +0 -1 jakarta-poi/src/java/org/apache/poi/util/NullLogger.java
Index: NullLogger.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/util/NullLogger.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- NullLogger.java 30 Apr 2003 04:39:08 -0000 1.2
+++ NullLogger.java 6 Dec 2003 11:01:18 -0000 1.3
@@ -91,7 +91,6 @@
* Check if a logger is enabled to log at the specified level
*
* @param level One of DEBUG, INFO, WARN, ERROR, FATAL
- * @param obj1 The logger to check.
*/
public boolean check(final int level)
1.7 +0 -1 jakarta-poi/src/java/org/apache/poi/util/POILogger.java
Index: POILogger.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/util/POILogger.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- POILogger.java 30 Apr 2003 04:39:08 -0000 1.6
+++ POILogger.java 6 Dec 2003 11:01:18 -0000 1.7
@@ -94,7 +94,6 @@
* Check if a logger is enabled to log at the specified level
*
* @param level One of DEBUG, INFO, WARN, ERROR, FATAL
- * @param obj1 The logger to check.
*/
abstract public boolean check(final int level);
1.15 +2 -4 jakarta-poi/src/java/org/apache/poi/util/StringUtil.java
Index: StringUtil.java
===================================================================
RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/util/StringUtil.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- StringUtil.java 4 Dec 2003 22:26:01 -0000 1.14
+++ StringUtil.java 6 Dec 2003 11:01:18 -0000 1.15
@@ -86,7 +86,7 @@
[EMAIL PROTECTED] offset the initial offset
into the
* byte array. it is assumed that string[ offset ] and string[ offset +
* 1 ] contain the first 16-bit unicode character
- [EMAIL PROTECTED] len
+ [EMAIL PROTECTED] len the length of the final string
[EMAIL PROTECTED] the converted string
[EMAIL PROTECTED] ArrayIndexOutOfBoundsException if offset is out of bounds
for
* the byte array (i.e., is negative or is greater than or equal to
@@ -94,7 +94,6 @@
[EMAIL PROTECTED] IllegalArgumentException if len is too large (i.e.,
* there is not enough data in string to create a String of that
* length)
- [EMAIL PROTECTED] len the length of the final string
*/
public static String getFromUnicodeLE(
final byte[] string,
@@ -138,7 +137,7 @@
[EMAIL PROTECTED] offset the initial offset
into the
* byte array. it is assumed that string[ offset ] and string[ offset +
* 1 ] contain the first 16-bit unicode character
- [EMAIL PROTECTED] len
+ [EMAIL PROTECTED] len the length of the final string
[EMAIL PROTECTED] the converted string
[EMAIL PROTECTED] ArrayIndexOutOfBoundsException if offset is out of bounds
for
* the byte array (i.e., is negative or is greater than or equal to
@@ -146,7 +145,6 @@
[EMAIL PROTECTED] IllegalArgumentException if len is too large (i.e.,
* there is not enough data in string to create a String of that
* length)
- [EMAIL PROTECTED] len the length of the final string
*/
public static String getFromUnicodeBE(
final byte[] string,
1.6 +0 -2
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/CHPFormattedDiskPage.java
Index: CHPFormattedDiskPage.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/CHPFormattedDiskPage.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- CHPFormattedDiskPage.java 10 Nov 2003 11:48:58 -0000 1.5
+++ CHPFormattedDiskPage.java 6 Dec 2003 11:01:19 -0000 1.6
@@ -89,8 +89,6 @@
/**
* This constructs a CHPFormattedDiskPage from a raw fkp (512 byte array
* read from a Word file).
- *
- * @param fkp The 512 byte array to read data from
*/
public CHPFormattedDiskPage(byte[] documentStream, int offset, int fcMin)
{
1.7 +0 -2
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/PAPFormattedDiskPage.java
Index: PAPFormattedDiskPage.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/PAPFormattedDiskPage.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- PAPFormattedDiskPage.java 15 Jul 2003 03:22:53 -0000 1.6
+++ PAPFormattedDiskPage.java 6 Dec 2003 11:01:19 -0000 1.7
@@ -93,8 +93,6 @@
/**
* Creates a PAPFormattedDiskPage from a 512 byte array
- *
- * @param fkp a 512 byte array.
*/
public PAPFormattedDiskPage(byte[] documentStream, int offset, int fcMin)
{
1.7 +1 -2
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/PropertyNode.java
Index: PropertyNode.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/PropertyNode.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- PropertyNode.java 12 Nov 2003 01:33:59 -0000 1.6
+++ PropertyNode.java 6 Dec 2003 11:01:19 -0000 1.7
@@ -74,7 +74,6 @@
/**
* @param fcStart The start of the text for this property.
* @param fcEnd The end of the text for this property.
- * @param grpprl The property description in compressed form.
*/
public PropertyNode(int fcStart, int fcEnd, Object buf)
{
@@ -97,7 +96,7 @@
}
/**
- * @retrun The offset of the end of this property's text.
+ * @return The offset of the end of this property's text.
*/
public int getEnd()
{
1.6 +0 -4
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/StyleSheet.java
Index: StyleSheet.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/StyleSheet.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- StyleSheet.java 11 Nov 2003 11:41:07 -0000 1.5
+++ StyleSheet.java 6 Dec 2003 11:01:19 -0000 1.6
@@ -98,10 +98,6 @@
/**
* StyleSheet constructor. Loads a document's stylesheet information,
- *
- * @param styleSheet A byte array containing a document's raw stylesheet
- * info. Found by using FileInformationBlock.getFcStshf() and
- * FileInformationBLock.getLcbStshf()
*/
public StyleSheet(byte[] tableStream, int offset)
{
1.7 +0 -3
jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/TextPiece.java
Index: TextPiece.java
===================================================================
RCS file:
/home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/TextPiece.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- TextPiece.java 12 Nov 2003 01:33:59 -0000 1.6
+++ TextPiece.java 6 Dec 2003 11:01:19 -0000 1.7
@@ -70,9 +70,6 @@
/**
* @param start Offset in main document stream.
- * @param length The total length of the text in bytes. Note: 1 character
- * does not necessarily refer to 1 byte.
- * @param unicode true if this text is unicode.
*/
public TextPiece(int start, int end, byte[] text, PieceDescriptor pd)
throws UnsupportedEncodingException
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]