01: package com.xoetrope.export.xl;
02:
03: import java.awt.Point;
04:
05: /**
06: *
07: * <p> Copyright (c) Xoetrope Ltd., 2001-2006, This software is licensed under
08: * the GNU Public License (GPL), please see license.txt for more details. If
09: * you make commercial use of this software you must purchase a commercial
10: * license from Xoetrope.</p>
11: * <p> $Revision: 1.4 $</p>
12: */
13: public interface CursorTracker {
14:
15: public void setOffset(int x, int y);
16:
17: public Point getOffset();
18:
19: public int getColumn();
20:
21: public int getRow();
22:
23: public int getColumnCount();
24:
25: public int getRowCount();
26:
27: }
|