diff options
author | Nick Burch <nick@apache.org> | 2011-05-13 11:05:02 +0000 |
---|---|---|
committer | Nick Burch <nick@apache.org> | 2011-05-13 11:05:02 +0000 |
commit | 3d1808a49dbcac5b3e62fa2926b483421646f67c (patch) | |
tree | 385fde6cb010432a7a69261c86b56e98752fcf77 /src/java/org | |
parent | 47a68ab96d680fb531ef6673928d8879fb090f0d (diff) | |
download | poi-3d1808a49dbcac5b3e62fa2926b483421646f67c.tar.gz poi-3d1808a49dbcac5b3e62fa2926b483421646f67c.zip |
Correct docs issue
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1102666 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org')
-rw-r--r-- | src/java/org/apache/poi/ss/usermodel/ClientAnchor.java | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java b/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java index 6131bf554b..aa21e2150d 100644 --- a/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java +++ b/src/java/org/apache/poi/ss/usermodel/ClientAnchor.java @@ -16,8 +16,6 @@ ==================================================================== */ package org.apache.poi.ss.usermodel; -import org.apache.poi.xssf.usermodel.XSSFShape; - /** * A client anchor is attached to an excel worksheet. It anchors against a * top-left and bottom-right cell. @@ -125,7 +123,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @return the x coordinate within the first cell */ @@ -136,7 +134,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @param dx1 the x coordinate within the first cell */ @@ -147,7 +145,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @return the y coordinate within the first cell */ @@ -158,7 +156,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @param dy1 the y coordinate within the first cell */ @@ -169,7 +167,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @return the y coordinate within the second cell */ @@ -180,7 +178,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @param dy2 the y coordinate within the second cell */ @@ -191,7 +189,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @return the x coordinate within the second cell */ @@ -202,7 +200,7 @@ public interface ClientAnchor { * * Note - XSSF and HSSF have a slightly different coordinate * system, values in XSSF are larger by a factor of - * {@link XSSFShape#EMU_PER_PIXEL} + * {@link org.apache.poi.xssf.usermodel.XSSFShape#EMU_PER_PIXEL} * * @param dx2 the x coordinate within the second cell */ |