Regalamiunsorriso/rus/WEB-INF/lib/jxl_src/jxl/Hyperlink.java

26 lines
310 B
Java
Raw Normal View History

2026-03-14 20:04:39 +01:00
package jxl;
import java.io.File;
import java.net.URL;
public interface Hyperlink {
int getRow();
int getColumn();
Range getRange();
boolean isFile();
boolean isURL();
boolean isLocation();
int getLastRow();
int getLastColumn();
URL getURL();
File getFile();
}