upload tizen1.0 source
[sdk/ide/product.git] / org.eclipse.cdt.ui / src / org / eclipse / cdt / internal / ui / viewsupport / ISelectionListenerWithAST.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2007 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 org.eclipse.cdt.internal.ui.viewsupport;
12
13 import org.eclipse.jface.text.ITextSelection;
14 import org.eclipse.ui.IEditorPart;
15
16 import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
17
18 /**
19  * Listener to be informed on text selection changes in an editor (post selection), including the corresponding AST.
20  * The AST is shared and must not be modified.
21  * Listeners can be registered in a <code>SelectionListenerWithASTManager</code>.
22  */
23 public interface ISelectionListenerWithAST {
24         
25         /**
26          * Called when a selection has changed. The method is called in a post selection event in an background
27          * thread.
28          * 
29          * @param part The editor part in which the selection change has occurred.
30          * @param selection The new text selection
31          * @param astRoot The AST tree corresponding to the editor's input. This AST is shared and must
32          * not be modified.
33          */
34         void selectionChanged(IEditorPart part, ITextSelection selection, IASTTranslationUnit astRoot);
35 }