mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
Adjust some JavaDoc
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891344 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d11e5ce48f
commit
5a1cb0ad90
@ -30,6 +30,9 @@ public class EscherShapePathProperty extends EscherSimpleProperty {
|
||||
|
||||
/**
|
||||
* Create an instance of an escher shape path property.
|
||||
*
|
||||
* @param propertyNumber which property to handle
|
||||
* @param shapePath which shape path to handle
|
||||
*/
|
||||
public EscherShapePathProperty( short propertyNumber, int shapePath ) {
|
||||
super( propertyNumber, false, false, shapePath );
|
||||
|
||||
@ -217,7 +217,7 @@ public final class ExtractorFactory {
|
||||
* no TextExtractor can be created for some reason.
|
||||
*
|
||||
* @throws IOException If converting the {@link DirectoryNode} into a HSSFWorkbook fails
|
||||
* @throws OldFileFormatException If the {@link DirectoryNode} points to a format of
|
||||
* @throws org.apache.poi.OldFileFormatException If the {@link DirectoryNode} points to a format of
|
||||
* an unsupported version of Excel.
|
||||
* @throws IllegalArgumentException If creating the Extractor fails
|
||||
*/
|
||||
@ -246,7 +246,7 @@ public final class ExtractorFactory {
|
||||
* @return An array of resulting extractors. Empty if no embedded documents are found.
|
||||
*
|
||||
* @throws IOException If converting the {@link DirectoryNode} into a HSSFWorkbook fails
|
||||
* @throws OldFileFormatException If the {@link DirectoryNode} points to a format of
|
||||
* @throws org.apache.poi.OldFileFormatException If the {@link DirectoryNode} points to a format of
|
||||
* an unsupported version of Excel.
|
||||
* @throws IllegalArgumentException If creating the Extractor fails
|
||||
*/
|
||||
|
||||
@ -68,6 +68,8 @@ public class ClassID implements Duplicatable, GenericRecord {
|
||||
|
||||
/**
|
||||
* Clones the given ClassID
|
||||
*
|
||||
* @param other The ClassID to use a base for creating this one
|
||||
*/
|
||||
public ClassID(ClassID other) {
|
||||
System.arraycopy(other.bytes, 0, bytes, 0, bytes.length);
|
||||
|
||||
@ -121,6 +121,8 @@ public final class FormulaRecord extends CellRecord {
|
||||
}
|
||||
|
||||
/**
|
||||
* @return The type of the cached value or CellType.NUMERIC.getCode() if the cached value is empty
|
||||
*
|
||||
* @deprecated POI 5.0.0, will be removed in 6.0, use getCachedResultTypeEnum until switch to enum is fully done
|
||||
*/
|
||||
@Deprecated
|
||||
@ -134,7 +136,8 @@ public final class FormulaRecord extends CellRecord {
|
||||
|
||||
/**
|
||||
* Returns the type of the cached result
|
||||
* @return A CellType
|
||||
*
|
||||
* @return The type of the cached value or CellType.NUMERIC if the cached value is empty
|
||||
* @since POI 5.0.0
|
||||
*/
|
||||
public CellType getCachedResultTypeEnum() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user