11 lines
151 B
Java
11 lines
151 B
Java
|
|
package jxl;
|
||
|
|
|
||
|
|
public interface Range {
|
||
|
|
Cell getTopLeft();
|
||
|
|
|
||
|
|
Cell getBottomRight();
|
||
|
|
|
||
|
|
int getFirstSheetIndex();
|
||
|
|
|
||
|
|
int getLastSheetIndex();
|
||
|
|
}
|