From bd7568e16fc0aabcaec7fe867a0d5c90ca5fea86 Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Wed, 25 Nov 2015 09:48:36 +0000 Subject: [PATCH] javadoc fix git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1716342 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/ss/usermodel/ClientAnchor.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java b/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java index b65c83bd07..b781e04b91 100644 --- a/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java +++ b/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java @@ -31,7 +31,7 @@ public interface ClientAnchor { * resize to maintain its row and column anchors (i.e. the * object is anchored to the actual from and to row and column) *

- * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType.MOVE_AND_RESIZE} instead. + * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_AND_RESIZE} instead. */ public static final AnchorType MOVE_AND_RESIZE = AnchorType.MOVE_AND_RESIZE; @@ -46,7 +46,7 @@ public interface ClientAnchor { * If additional rows/columns are added between the from and to locations of the drawing, * the drawing shall move its to anchors as needed to maintain this same absolute size. *

- * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType.MOVE_DONT_RESIZE} instead. + * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_DONT_RESIZE} instead. */ public static final AnchorType MOVE_DONT_RESIZE = AnchorType.MOVE_DONT_RESIZE; @@ -62,7 +62,7 @@ public interface ClientAnchor { * drawing, the drawing shall move its anchors as needed * to maintain this same absolute position. *

- * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType.DONT_MOVE_AND_RESIZE} instead. + * @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#DONT_MOVE_AND_RESIZE} instead. */ public static final AnchorType DONT_MOVE_AND_RESIZE = AnchorType.DONT_MOVE_AND_RESIZE; -- 2.39.5