1 11 package org.eclipse.jface.text.source; 12 13 import org.eclipse.jface.text.BadLocationException; 14 15 16 41 public interface ILineDiffer { 42 43 49 ILineDiffInfo getLineInfo(int line); 50 51 58 void revertLine(int line) throws BadLocationException; 59 60 68 void revertBlock(int line) throws BadLocationException; 69 70 78 void revertSelection(int line, int nLines) throws BadLocationException; 79 80 87 int restoreAfterLine(int line) throws BadLocationException; 88 } 89 | Popular Tags |