diff options
author | Javen O'Neal <onealj@apache.org> | 2016-07-17 20:27:57 +0000 |
---|---|---|
committer | Javen O'Neal <onealj@apache.org> | 2016-07-17 20:27:57 +0000 |
commit | c965f02c60c425a80e5aa7195c1ff7bc3b178224 (patch) | |
tree | f765831e62ffb306a3e59c9ebeaa0c31471ba659 | |
parent | bf531156451d31877e56e6625ed1db2e252346ea (diff) | |
download | poi-c965f02c60c425a80e5aa7195c1ff7bc3b178224.tar.gz poi-c965f02c60c425a80e5aa7195c1ff7bc3b178224.zip |
if ever combined, VerticalAlignment and HorizontalAlignment would likely end up at org.apache.poi.common.usermodel
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1753113 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/poi/sl/usermodel/VerticalAlignment.java | 3 | ||||
-rw-r--r-- | src/java/org/apache/poi/ss/usermodel/VerticalAlignment.java | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/java/org/apache/poi/sl/usermodel/VerticalAlignment.java b/src/java/org/apache/poi/sl/usermodel/VerticalAlignment.java index 6a63af6b0e..a38da00bf1 100644 --- a/src/java/org/apache/poi/sl/usermodel/VerticalAlignment.java +++ b/src/java/org/apache/poi/sl/usermodel/VerticalAlignment.java @@ -21,7 +21,8 @@ package org.apache.poi.sl.usermodel; /**
* Specifies a list of available anchoring types for text
*
- * <!-- FIXME: Identical to {@link org.apache.poi.ss.usermodel.VerticalAlignment}. Should merge these. -->
+ * <!-- FIXME: Identical to {@link org.apache.poi.ss.usermodel.VerticalAlignment}. Should merge these to
+ * {@link org.apache.poi.common.usermodel}.VerticalAlignment in the future. -->
*
* @author Yegor Kozlov
*/
diff --git a/src/java/org/apache/poi/ss/usermodel/VerticalAlignment.java b/src/java/org/apache/poi/ss/usermodel/VerticalAlignment.java index 32d5e64a77..f8976d1307 100644 --- a/src/java/org/apache/poi/ss/usermodel/VerticalAlignment.java +++ b/src/java/org/apache/poi/ss/usermodel/VerticalAlignment.java @@ -21,7 +21,8 @@ package org.apache.poi.ss.usermodel; * This enumeration value indicates the type of vertical alignment for a cell, i.e., * whether it is aligned top, bottom, vertically centered, justified or distributed. * - * <!-- FIXME: Identical to {@link org.apache.poi.ss.usermodel.VerticalAlignment}. Should merge these.--> + * <!-- FIXME: Identical to {@link org.apache.poi.ss.usermodel.VerticalAlignment}. Should merge these to + * {@link org.apache.poi.common.usermodel}.VerticalAlignment in the future. --> */ public enum VerticalAlignment { /** |