Correct docs issue

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1102666 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Nick Burch 2011-05-13 11:05:02 +00:00
parent 47a68ab96d
commit 3d1808a49d
1 changed files with 8 additions and 10 deletions

View File

@ -16,8 +16,6 @@
==================================================================== */ ==================================================================== */
package org.apache.poi.ss.usermodel; 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 * A client anchor is attached to an excel worksheet. It anchors against a
* top-left and bottom-right cell. * top-left and bottom-right cell.
@ -125,7 +123,7 @@ public interface ClientAnchor {
* *
* Note - XSSF and HSSF have a slightly different coordinate * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @return the x coordinate within the first cell
*/ */
@ -136,7 +134,7 @@ public interface ClientAnchor {
* *
* Note - XSSF and HSSF have a slightly different coordinate * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @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 * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @return the y coordinate within the first cell
*/ */
@ -158,7 +156,7 @@ public interface ClientAnchor {
* *
* Note - XSSF and HSSF have a slightly different coordinate * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @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 * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @return the y coordinate within the second cell
*/ */
@ -180,7 +178,7 @@ public interface ClientAnchor {
* *
* Note - XSSF and HSSF have a slightly different coordinate * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @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 * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @return the x coordinate within the second cell
*/ */
@ -202,7 +200,7 @@ public interface ClientAnchor {
* *
* Note - XSSF and HSSF have a slightly different coordinate * Note - XSSF and HSSF have a slightly different coordinate
* system, values in XSSF are larger by a factor of * 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 * @param dx2 the x coordinate within the second cell
*/ */