cleaned javadoc warnings
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@951920 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d29d1d7d9b
commit
8c4341facf
@ -34,8 +34,6 @@ import org.apache.poi.poifs.filesystem.POIFSFileSystem;
|
|||||||
* a static id matching one that you have registered in your HSSFRequest will be passed
|
* a static id matching one that you have registered in your HSSFRequest will be passed
|
||||||
* to your associated HSSFListener.
|
* to your associated HSSFListener.
|
||||||
*
|
*
|
||||||
* @see org.apache.poi.hssf.dev.EFHSSF
|
|
||||||
*
|
|
||||||
* @author Andrew C. Oliver (acoliver at apache dot org)
|
* @author Andrew C. Oliver (acoliver at apache dot org)
|
||||||
* @author Carey Sublette (careysub@earthling.net)
|
* @author Carey Sublette (careysub@earthling.net)
|
||||||
*/
|
*/
|
||||||
@ -59,7 +57,7 @@ public class HSSFEventFactory {
|
|||||||
* Processes a file into essentially record events.
|
* Processes a file into essentially record events.
|
||||||
*
|
*
|
||||||
* @param req an Instance of HSSFRequest which has your registered listeners
|
* @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 {
|
public void processWorkbookEvents(HSSFRequest req, DirectoryNode dir) throws IOException {
|
||||||
InputStream in = dir.createDocumentInputStream("Workbook");
|
InputStream in = dir.createDocumentInputStream("Workbook");
|
||||||
@ -83,7 +81,7 @@ public class HSSFEventFactory {
|
|||||||
* Processes a file into essentially record events.
|
* Processes a file into essentially record events.
|
||||||
*
|
*
|
||||||
* @param req an Instance of HSSFRequest which has your registered listeners
|
* @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.
|
* @return numeric user-specified result code.
|
||||||
*/
|
*/
|
||||||
public short abortableProcessWorkbookEvents(HSSFRequest req, DirectoryNode dir)
|
public short abortableProcessWorkbookEvents(HSSFRequest req, DirectoryNode dir)
|
||||||
|
@ -31,7 +31,6 @@ import org.apache.poi.hssf.record.RecordFactory;
|
|||||||
*
|
*
|
||||||
* @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
|
* @see org.apache.poi.hssf.eventusermodel.HSSFEventFactory
|
||||||
* @see org.apache.poi.hssf.eventusermodel.HSSFListener
|
* @see org.apache.poi.hssf.eventusermodel.HSSFListener
|
||||||
* @see org.apache.poi.hssf.dev.EFHSSF
|
|
||||||
* @see org.apache.poi.hssf.eventusermodel.HSSFUserException
|
* @see org.apache.poi.hssf.eventusermodel.HSSFUserException
|
||||||
* @author Andrew C. Oliver (acoliver at apache dot org)
|
* @author Andrew C. Oliver (acoliver at apache dot org)
|
||||||
* @author Carey Sublette (careysub@earthling.net)
|
* @author Carey Sublette (careysub@earthling.net)
|
||||||
|
@ -242,7 +242,7 @@ public final class NameRecord extends StandardRecord {
|
|||||||
* Indicates that the defined name refers to a user-defined function.
|
* 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.
|
* 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){
|
public void setFunction(boolean function){
|
||||||
if (function) {
|
if (function) {
|
||||||
|
@ -431,7 +431,7 @@ public final class RecordInputStream implements LittleEndianInput {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@requrn sid of next record. Can be called after hasNextRecord()
|
@return sid of next record. Can be called after hasNextRecord()
|
||||||
*/
|
*/
|
||||||
public int getNextSid() {
|
public int getNextSid() {
|
||||||
return _nextSid;
|
return _nextSid;
|
||||||
|
@ -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,
|
public static SharedValueManager create(SharedFormulaRecord[] sharedFormulaRecords,
|
||||||
CellReference[] firstCells, ArrayRecord[] arrayRecords, TableRecord[] tableRecords) {
|
CellReference[] firstCells, ArrayRecord[] arrayRecords, TableRecord[] tableRecords) {
|
||||||
|
@ -30,8 +30,7 @@ import org.apache.poi.util.LittleEndianOutput;
|
|||||||
* <P>
|
* <P>
|
||||||
* This record part specifies Formula Evaluation & Error Ignoring data
|
* This record part specifies Formula Evaluation & Error Ignoring data
|
||||||
* for a sheet, stored as part of a Shared Feature. It can be found in
|
* for a sheet, stored as part of a Shared Feature. It can be found in
|
||||||
* records such as {@link FeatRecord}, {@link Feat11Record} or
|
* records such as {@link FeatRecord}.
|
||||||
* {@link Feat12Record}.
|
|
||||||
* For the full meanings of the flags, see pages 669 and 670
|
* For the full meanings of the flags, see pages 669 and 670
|
||||||
* of the Excel binary file format documentation.
|
* of the Excel binary file format documentation.
|
||||||
*/
|
*/
|
||||||
|
@ -31,8 +31,7 @@ import org.apache.poi.util.StringUtil;
|
|||||||
* <P>
|
* <P>
|
||||||
* This record part specifies Protection data for a sheet, stored
|
* This record part specifies Protection data for a sheet, stored
|
||||||
* as part of a Shared Feature. It can be found in records such
|
* as part of a Shared Feature. It can be found in records such
|
||||||
* as {@link FeatRecord}, {@link Feat11Record} or
|
* as {@link FeatRecord}
|
||||||
* {@link Feat12Record}
|
|
||||||
*/
|
*/
|
||||||
public final class FeatProtection implements SharedFeature {
|
public final class FeatProtection implements SharedFeature {
|
||||||
public static long NO_SELF_RELATIVE_SECURITY_FEATURE = 0;
|
public static long NO_SELF_RELATIVE_SECURITY_FEATURE = 0;
|
||||||
|
@ -27,8 +27,7 @@ import org.apache.poi.util.LittleEndianOutput;
|
|||||||
* Title: FeatSmartTag (Smart Tag Shared Feature) common record part
|
* Title: FeatSmartTag (Smart Tag Shared Feature) common record part
|
||||||
* <P>
|
* <P>
|
||||||
* This record part specifies Smart Tag data for a sheet, stored as part
|
* 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
|
* of a Shared Feature. It can be found in records such as {@link FeatRecord}.
|
||||||
* {@link FeatRecord}, {@link Feat11Record} or {@link Feat12Record}.
|
|
||||||
* It is made up of a hash, and a set of Factoid Data that makes up
|
* It is made up of a hash, and a set of Factoid Data that makes up
|
||||||
* the smart tags.
|
* the smart tags.
|
||||||
* For more details, see page 669 of the Excel binary file
|
* For more details, see page 669 of the Excel binary file
|
||||||
|
@ -353,7 +353,7 @@ public abstract class TextFunction implements Function {
|
|||||||
* <tt>start_num</tt>, is optional (default=1) and specifies where to start searching
|
* <tt>start_num</tt>, is optional (default=1) and specifies where to start searching
|
||||||
* from. Character positions are 1-based.<p/>
|
* 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);
|
public static final Function FIND = new SearchFind(true);
|
||||||
/**
|
/**
|
||||||
|
@ -96,7 +96,7 @@ public final class HSSFDataFormat implements DataFormat {
|
|||||||
* Get the format index that matches the given format
|
* Get the format index that matches the given format
|
||||||
* string, creating a new format entry if required.
|
* string, creating a new format entry if required.
|
||||||
* Aliases text to the proper format as 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.
|
* @return index of format.
|
||||||
*/
|
*/
|
||||||
public short getFormat(String pFormat) {
|
public short getFormat(String pFormat) {
|
||||||
|
@ -57,7 +57,8 @@ public class RawDataBlock
|
|||||||
* Constructor RawDataBlock
|
* Constructor RawDataBlock
|
||||||
*
|
*
|
||||||
* @param stream the InputStream from which the data will be read
|
* @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
|
* @exception IOException on I/O errors, and if an insufficient
|
||||||
* amount of data is read (the InputStream must
|
* amount of data is read (the InputStream must
|
||||||
|
@ -22,7 +22,7 @@ import java.util.logging.Logger;
|
|||||||
/**
|
/**
|
||||||
* This is the abstract supertype for the various cell formatters.
|
* 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 {
|
public abstract class CellFormatter {
|
||||||
/** The original specified format. */
|
/** The original specified format. */
|
||||||
|
@ -21,7 +21,7 @@ import org.apache.poi.hssf.record.formula.eval.AreaEval;
|
|||||||
import org.apache.poi.hssf.record.formula.eval.ValueEval;
|
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
|
* @author Josh Micich
|
||||||
*/
|
*/
|
||||||
|
@ -104,7 +104,9 @@ public final class ForkedEvaluator {
|
|||||||
* evaluateInCell() when the call should not modify the contents of the
|
* evaluateInCell() when the call should not modify the contents of the
|
||||||
* original cell.
|
* 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
|
* @return <code>null</code> if the supplied cell is <code>null</code> or blank
|
||||||
*/
|
*/
|
||||||
public ValueEval evaluate(String sheetName, int rowIndex, int columnIndex) {
|
public ValueEval evaluate(String sheetName, int rowIndex, int columnIndex) {
|
||||||
|
@ -172,7 +172,7 @@ public final class BuiltinFormats {
|
|||||||
* <p/>
|
* <p/>
|
||||||
* Automatically converts "text" to excel's format string to represent text.
|
* Automatically converts "text" to excel's format string to represent text.
|
||||||
* </p>
|
* </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.
|
* @return index of format or -1 if undefined.
|
||||||
*/
|
*/
|
||||||
public static int getBuiltinFormat(String pFmt) {
|
public static int getBuiltinFormat(String pFmt) {
|
||||||
|
@ -100,9 +100,9 @@ public class MapInfo extends POIXMLDocumentPart {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the CTSchema buy it's ID
|
* Gets the
|
||||||
* @param schemaId the schema ID
|
* @param schemaId the schema ID
|
||||||
* @return
|
* @return CTSchema by it's ID
|
||||||
*/
|
*/
|
||||||
public CTSchema getCTSchemaById(String schemaId){
|
public CTSchema getCTSchemaById(String schemaId){
|
||||||
CTSchema xmlSchema = null;
|
CTSchema xmlSchema = null;
|
||||||
|
@ -187,8 +187,7 @@ public class Table extends POIXMLDocumentPart {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* the number of mapped table columns (see Open Office XML Part 4: chapter 3.5.1.4)
|
* @return the number of mapped table columns (see Open Office XML Part 4: chapter 3.5.1.4)
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
public long getNumerOfMappedColumns(){
|
public long getNumerOfMappedColumns(){
|
||||||
return ctTable.getTableColumns().getCount();
|
return ctTable.getTableColumns().getCount();
|
||||||
@ -196,9 +195,9 @@ public class Table extends POIXMLDocumentPart {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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)
|
* (see Open Office XML Part 4: chapter 3.5.1.2, attribute ref)
|
||||||
* @return
|
*
|
||||||
*/
|
*/
|
||||||
public CellReference getStartCellReference() {
|
public CellReference getStartCellReference() {
|
||||||
|
|
||||||
@ -212,9 +211,9 @@ public class Table extends POIXMLDocumentPart {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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)
|
* (see Open Office XML Part 4: chapter 3.5.1.2, attribute ref)
|
||||||
* @return
|
*
|
||||||
*/
|
*/
|
||||||
public CellReference getEndCellReference() {
|
public CellReference getEndCellReference() {
|
||||||
|
|
||||||
@ -230,8 +229,8 @@ public class Table extends POIXMLDocumentPart {
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the total number of rows in the selection. (Note: in this version autofiltering is ignored)
|
* @return the total number of rows in the selection. (Note: in this version autofiltering is ignored)
|
||||||
* @return
|
*
|
||||||
*/
|
*/
|
||||||
public int getRowCount(){
|
public int getRowCount(){
|
||||||
|
|
||||||
|
@ -987,8 +987,7 @@ public class XWPFParagraph {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the style of the paragraph
|
* @return the style of the paragraph
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
public String getStyle() {
|
public String getStyle() {
|
||||||
CTPPr pr = getCTPPr();
|
CTPPr pr = getCTPPr();
|
||||||
|
@ -85,7 +85,7 @@ public class MAPIMessage extends POIDocument {
|
|||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Constructor for reading MSG Files from a POIFS filesystem
|
* Constructor for reading MSG Files from a POIFS filesystem
|
||||||
* @param in
|
* @param fs
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public MAPIMessage(POIFSFileSystem fs) throws IOException {
|
public MAPIMessage(POIFSFileSystem fs) throws IOException {
|
||||||
@ -94,7 +94,8 @@ public class MAPIMessage extends POIDocument {
|
|||||||
/**
|
/**
|
||||||
* Constructor for reading MSG Files from a certain
|
* Constructor for reading MSG Files from a certain
|
||||||
* point within a POIFS filesystem
|
* point within a POIFS filesystem
|
||||||
* @param in
|
* @param poifsDir
|
||||||
|
* @param fs
|
||||||
* @throws IOException
|
* @throws IOException
|
||||||
*/
|
*/
|
||||||
public MAPIMessage(DirectoryNode poifsDir, POIFSFileSystem fs) throws IOException {
|
public MAPIMessage(DirectoryNode poifsDir, POIFSFileSystem fs) throws IOException {
|
||||||
|
@ -68,7 +68,7 @@ public class ByteChunk extends Chunk {
|
|||||||
* If your data isn't in fact stored as basically
|
* If your data isn't in fact stored as basically
|
||||||
* ASCII, don't expect this to return much of any
|
* ASCII, don't expect this to return much of any
|
||||||
* sense....
|
* sense....
|
||||||
* @return
|
* @return the data formatted as a string
|
||||||
*/
|
*/
|
||||||
public String getAs7bitString() {
|
public String getAs7bitString() {
|
||||||
return StringChunk.parseAs7BitData(value);
|
return StringChunk.parseAs7BitData(value);
|
||||||
|
@ -103,16 +103,16 @@ public class MessageSubmissionChunk extends Chunk {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
* message, as found from the message ID it generated.
|
||||||
* @return
|
*
|
||||||
*/
|
*/
|
||||||
public Calendar getAcceptedAtTime() {
|
public Calendar getAcceptedAtTime() {
|
||||||
return date;
|
return date;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the full ID that the server generated when
|
* @return the full ID that the server generated when
|
||||||
* it accepted the message.
|
* it accepted the message.
|
||||||
*/
|
*/
|
||||||
public String getSubmissionId() {
|
public String getSubmissionId() {
|
||||||
|
@ -236,7 +236,7 @@ public final class TestCountFuncs extends TestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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() {
|
public void testCountifAreaCriteria() {
|
||||||
int srcColIx = 2; // anything but column A
|
int srcColIx = 2; // anything but column A
|
||||||
|
@ -26,7 +26,7 @@ import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
|||||||
import org.apache.poi.ss.usermodel.CellValue;
|
import org.apache.poi.ss.usermodel.CellValue;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Tests for {@link Find}
|
* Tests for {@link Financed}
|
||||||
*
|
*
|
||||||
* @author Torstein Svendsen (torstei@officenet.no)
|
* @author Torstein Svendsen (torstei@officenet.no)
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user