Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 257842 | Differences between
and this patch

Collapse All | Expand All

(-)core/org/eclipse/debug/core/model/IMemoryAddress.java (+35 lines)
Added Link Here
1
/*******************************************************************************
2
 * Copyright (c) 2009 Wind River Systems 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
 *     Wind River Systems - initial API and implementation
10
 *******************************************************************************/
11
package org.eclipse.debug.core.model;
12
13
import java.math.BigInteger;
14
15
/** 
16
 * Object representing an address.
17
 * 
18
 * @since 3.5
19
 */
20
public interface IMemoryAddress {
21
22
    /**
23
     * Returns the value of the address.
24
     * 
25
     * @return Value of the address as a big integer.
26
     */
27
    public BigInteger getValue();
28
    
29
    /**
30
     * Returns the address size in bytes.
31
     * 
32
     * @return the number of bytes required to hold this address. 
33
     */
34
    public int getSize();
35
}

Return to bug 257842