1 19 20 package jxl.biff.formula; 21 22 import jxl.read.biff.BOFRecord; 23 24 28 public interface ExternalSheet 29 { 30 36 public String getExternalSheetName(int index); 37 38 44 public int getExternalSheetIndex(String sheetName); 45 46 52 public int getExternalSheetIndex(int index); 53 54 60 public int getLastExternalSheetIndex(String sheetName); 61 62 68 public int getLastExternalSheetIndex(int index); 69 70 76 public BOFRecord getWorkbookBof(); 77 } 78 79 80 | Popular Tags |