Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 221d5f6b6b4de35183d28362761c2c864cb1114e (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
42
43
/*******************************************************************************
 * Copyright (c) 2012 Xilinx, 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:
 *     Xilinx - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.debug.ui;

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

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

    /**
     * Get register properties cache.
     * @return The register properties cache.
     */
    TCFDataCache<IRegisters.RegistersContext> getContext();

    /**
     * Get register children cache.
     * @return The register children cache.
     */
    ITCFChildren getChildren();

    /**
     * Get register value cache.
     * @return The register value cache.
     */
    TCFDataCache<byte[]> getValue();
}

Back to the top