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