1 11 12 package org.eclipse.jface.text; 13 14 import org.eclipse.swt.graphics.Color; 15 import org.eclipse.swt.graphics.Point; 16 17 18 29 public interface IFindReplaceTargetExtension { 30 31 40 void beginSession(); 41 42 47 void endSession(); 48 49 54 IRegion getScope(); 55 56 62 void setScope(IRegion scope); 63 64 69 Point getLineSelection(); 70 71 77 void setSelection(int offset, int length); 78 79 84 void setScopeHighlightColor(Color color); 85 86 87 93 void setReplaceAllMode(boolean replaceAll); 94 } 95 | Popular Tags |