X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/ISelectionListenerWithAST.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/ISelectionListenerWithAST.java index d470a99..4bd1312 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/ISelectionListenerWithAST.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/ui/viewsupport/ISelectionListenerWithAST.java @@ -11,25 +11,30 @@ package net.sourceforge.phpdt.internal.ui.viewsupport; import org.eclipse.jface.text.ITextSelection; - import org.eclipse.ui.IEditorPart; /** - * Listener to be informed on text selection changes in an editor (post selection), including the corresponding AST. - * The AST is shared and must not be modified. - * Listeners can be registered in a SelectionListenerWithASTManager. + * Listener to be informed on text selection changes in an editor (post + * selection), including the corresponding AST. The AST is shared and must not + * be modified. Listeners can be registered in a + * SelectionListenerWithASTManager. */ public interface ISelectionListenerWithAST { /** - * Called when a selection has changed. The method is called in a post selection event in an background - * thread. - * @param part The editor part in which the selection change has occured. - * @param selection The new text selection - * @param astRoot The AST tree corresponding to the editor's input. This AST is shared and must - * not be modified. + * Called when a selection has changed. The method is called in a post + * selection event in an background thread. + * + * @param part + * The editor part in which the selection change has occured. + * @param selection + * The new text selection + * @param astRoot + * The AST tree corresponding to the editor's input. This AST is + * shared and must not be modified. */ void selectionChanged(IEditorPart part, ITextSelection selection); -// void selectionChanged(IEditorPart part, ITextSelection selection, CompilationUnit astRoot); + // void selectionChanged(IEditorPart part, ITextSelection selection, + // CompilationUnit astRoot); }