mirror of https://github.com/apache/poi.git
bug 59907: add @Removal annotations to AnchorType static aliases in ClientAnchor
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1760620 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c548ad3b7
commit
434d796b6a
|
@ -36,6 +36,7 @@ public interface ClientAnchor {
|
|||
* </p>
|
||||
* @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_AND_RESIZE} instead.
|
||||
*/
|
||||
@Removal(version="3.17")
|
||||
public static final AnchorType MOVE_AND_RESIZE = AnchorType.MOVE_AND_RESIZE;
|
||||
|
||||
/**
|
||||
|
@ -51,6 +52,7 @@ public interface ClientAnchor {
|
|||
* </p>
|
||||
* @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#MOVE_DONT_RESIZE} instead.
|
||||
*/
|
||||
@Removal(version="3.17")
|
||||
public static final AnchorType MOVE_DONT_RESIZE = AnchorType.MOVE_DONT_RESIZE;
|
||||
|
||||
/**
|
||||
|
@ -67,6 +69,7 @@ public interface ClientAnchor {
|
|||
* </p>
|
||||
* @deprecated since POI 3.14beta1 (circa 2015-11-24). Use {@link AnchorType#DONT_MOVE_AND_RESIZE} instead.
|
||||
*/
|
||||
@Removal(version="3.17")
|
||||
public static final AnchorType DONT_MOVE_AND_RESIZE = AnchorType.DONT_MOVE_AND_RESIZE;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue