Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: dc501f993ad2c450cd8dba94e7dc5adadc0a3a0e (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
/*******************************************************************************
 * Copyright (c) 2014 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 v1.0 which accompanies this distribution, and is
 * available at http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.debug.ui;

import org.eclipse.tcf.services.IExpressions;
import org.eclipse.tcf.util.TCFDataCache;

/**
 * ITCFExpression is an interface that is implemented by TCF debug model elements
 * that represent a remote expression.
 * A visual element in a debugger view can be adapted to this interface -
 * if the element represents a remote TCF expression.
 *
 * @noimplement
 */
public interface ITCFExpression extends ITCFObject {

    /**
     * Get expression properties cache.
     * @return The expression properties cache.
     */
    TCFDataCache<IExpressions.Expression> getExpression();

    /**
     * Get expression value cache.
     * @return The expression value cache.
     */
    TCFDataCache<IExpressions.Value> getValue();
}

Back to the top