]> source.dussan.org Git - poi.git/commitdiff
javadoc fix
authorJaven O'Neal <onealj@apache.org>
Wed, 25 Nov 2015 09:48:36 +0000 (09:48 +0000)
committerJaven O'Neal <onealj@apache.org>
Wed, 25 Nov 2015 09:48:36 +0000 (09:48 +0000)
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

index b65c83bd077ba407c37a80193c590f925358e107..b781e04b91932f0315c3b2a7a13fdc61f569958f 100644 (file)
@@ -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)
      * </p>
-     * @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.
      * </p>
-     * @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.
      * </p>
-     * @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;