1 11 package org.eclipse.jface.text.source; 12 13 14 24 public interface ILineDiffInfo { 25 26 27 static final int UNCHANGED= 0; 28 29 30 static final int ADDED= 1; 31 32 33 static final int CHANGED= 2; 34 35 40 int getRemovedLinesBelow(); 41 42 47 int getRemovedLinesAbove(); 48 49 55 int getChangeType(); 56 57 64 boolean hasChanges(); 65 66 72 String [] getOriginalText(); 73 } 74 | Popular Tags |