1 11 12 package org.eclipse.search.core.text; 13 14 import org.eclipse.core.resources.IFile; 15 16 29 public abstract class TextSearchMatchAccess { 30 31 36 public abstract IFile getFile(); 37 38 43 public abstract int getMatchOffset(); 44 45 50 public abstract int getMatchLength(); 51 52 57 public abstract int getFileContentLength(); 58 59 66 public abstract char getFileContentChar(int offset); 67 68 78 public abstract String getFileContent(int offset, int length); 79 80 } 81 | Popular Tags |