Fix javadoc warnings

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1800214 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2017-06-28 23:30:15 +00:00
parent ab9131c59e
commit 30072f2c86
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@ public final class AreaPtg extends Area2DPtgBase {
} }
/** /**
* @deprecated use {@link #AreaPtg(<code>AreaReference</code>)} instead * @deprecated use {@link #AreaPtg(AreaReference)} instead
*/ */
@Deprecated() @Deprecated()
@Removal(version="3.19") @Removal(version="3.19")

View File

@ -108,7 +108,7 @@ public interface ClientAnchor {
/** /**
* Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell. * Returns the column (0 based) of the first cell, or -1 if there is no top-left anchor cell.
* This is the case for absolute positioning (AnchorType{@link #DONT_MOVE_AND_RESIZE}). * This is the case for absolute positioning {@link AnchorType#MOVE_AND_RESIZE}
* *
* @return 0-based column of the first cell or -1 if none. * @return 0-based column of the first cell or -1 if none.
*/ */

View File

@ -108,7 +108,7 @@ public class AreaReference {
/** /**
* Creates an area ref from a pair of Cell References. * Creates an area ref from a pair of Cell References.
* @deprecated use {@link #new AreaReference(<code>CellReference</code>, <code>CellReference</code>, <code>SpreadsheetVersion</code>)} instead * @deprecated use {@link #AreaReference(CellReference, CellReference, SpreadsheetVersion)} instead
*/ */
@Deprecated @Deprecated
@Removal(version="3.19") @Removal(version="3.19")
@ -168,7 +168,7 @@ public class AreaReference {
* unbroken) area, or is it made up of * unbroken) area, or is it made up of
* several different parts? * several different parts?
* (If it is, you will need to call * (If it is, you will need to call
* {@link #generateContiguous(<code>SpreadsheetVersion</code>, String)}) * {@link #generateContiguous(SpreadsheetVersion, String)})
*/ */
public static boolean isContiguous(String reference) { public static boolean isContiguous(String reference) {
// If there's a sheet name, strip it off // If there's a sheet name, strip it off
@ -220,7 +220,7 @@ public class AreaReference {
/** /**
* Takes a non-contiguous area reference, and returns an array of contiguous area references * Takes a non-contiguous area reference, and returns an array of contiguous area references
* @return an array of contiguous area references. * @return an array of contiguous area references.
* @deprecated use {@link #generateContiguous(<code>SpreadsheetVersion</code>, String)} instead * @deprecated use {@link #generateContiguous(SpreadsheetVersion, String)} instead
*/ */
@Deprecated @Deprecated
@Removal(version="3.19") @Removal(version="3.19")