Files
HRMS/hrmsEjb/jxl/Hyperlink.java
2025-07-28 13:56:49 +05:30

27 lines
310 B
Java

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();
}