From 3d1808a49dbcac5b3e62fa2926b483421646f67c Mon Sep 17 00:00:00 2001 From: Nick Burch Date: Fri, 13 May 2011 11:05:02 +0000 Subject: [PATCH] Correct docs issue git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1102666 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/poi/ss/usermodel/ClientAnchor.java | 18 ++++++++---------- 1 file 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 */ -- 2.39.5