1 33 34 package edu.rice.cs.drjava.project; 35 36 import java.io.File ; 37 38 import edu.rice.cs.plt.tuple.Pair; 39 40 44 public interface DocumentInfoGetter { 45 46 49 public Pair<Integer ,Integer > getSelection(); 50 51 54 public Pair<Integer ,Integer > getScroll(); 55 56 57 public File getFile(); 58 59 62 public String getPackage(); 63 64 65 public boolean isActive(); 66 67 68 public boolean isUntitled(); 69 } | Popular Tags |