Implemented a simple occurrences finder for Variables ($...) and Identifiers;
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / viewsupport / ISelectionListenerWithAST.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11 package net.sourceforge.phpdt.internal.ui.viewsupport;
12
13 import org.eclipse.jface.text.ITextSelection;
14
15 import org.eclipse.ui.IEditorPart;
16
17 /**
18  * Listener to be informed on text selection changes in an editor (post selection), including the corresponding AST.
19  * The AST is shared and must not be modified.
20  * Listeners can be registered in a <code>SelectionListenerWithASTManager</code>.
21  */
22 public interface ISelectionListenerWithAST {
23
24         /**
25          * Called when a selection has changed. The method is called in a post selection event in an background
26          * thread.
27          * @param part The editor part in which the selection change has occured.
28          * @param selection The new text selection
29          * @param astRoot The AST tree corresponding to the editor's input. This AST is shared and must
30          * not be modified.
31          */
32         void selectionChanged(IEditorPart part, ITextSelection selection);
33 //      void selectionChanged(IEditorPart part, ITextSelection selection, CompilationUnit astRoot);
34
35 }