Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.port80.eclipse.util
Interface IIncrementalFindTreeTarget  view IIncrementalFindTreeTarget download IIncrementalFindTreeTarget.java

All Known Implementing Classes:
IncrementalFindTreeTarget

public interface IIncrementalFindTreeTarget

Interface to allow incremental find action on the implementation object.


Method Summary
 void beginSession(boolean forward, java.lang.String defaultString)
          Begin an incremental find session.
 boolean canPerformFind()
           
 void endSession()
          End an incremental find session.
 int findAndSelect(int start, java.lang.String findString, boolean searchForward, boolean caseSensitive)
          Find item with the given string and select it.
 org.eclipse.jface.viewers.StructuredSelection getSelection()
           
 java.lang.String getSelectionText()
          Get text representation of the currently selected item.
 boolean isEditable()
           
 void setSelection(java.lang.Object object)
           
 

Method Detail

canPerformFind

public boolean canPerformFind()

isEditable

public boolean isEditable()

getSelection

public org.eclipse.jface.viewers.StructuredSelection getSelection()

getSelectionText

public java.lang.String getSelectionText()
Get text representation of the currently selected item.


setSelection

public void setSelection(java.lang.Object object)

findAndSelect

public int findAndSelect(int start,
                         java.lang.String findString,
                         boolean searchForward,
                         boolean caseSensitive)
Find item with the given string and select it.


beginSession

public void beginSession(boolean forward,
                         java.lang.String defaultString)
Begin an incremental find session. This should be called before any increment find action can proceed.


endSession

public void endSession()
End an incremental find session. This should be called at the end of every incremental find session.