Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 67fd132e0a989b3e169fc0a36de7e35b9b2ae4ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*******************************************************************************
 * Copyright (c) 2012 Wind River Systems, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.debug.ui;

import org.eclipse.ui.IWorkbenchWindow;

/**
 * TCF clients can implement ITCFAnnotationProvider to manage debugger annotations
 * in the Eclipse workspace.
 *
 * Debugger annotations include editor markers for current instruction pointer,
 * stack frame addresses, and breakpoint planting status.
 *
 * TCF will use internal annotation provider if no suitable provider is found
 * through "annotation_provider" extension point for current selection in the Debug view.
 */
public interface ITCFAnnotationProvider {

    /**
     * Check if this provider recognizes type of a selection.
     * @param selection
     * @return true if the selection is supported by this provider.
     */
    boolean isSupportedSelection(Object selection);


    /**
     * Update all annotations in a workbench window for given selection in the Debug view.
     * @param window
     * @param selection
     */
    void updateAnnotations(IWorkbenchWindow window, final Object selection);
}

Back to the top