Community
Participate
Working Groups
/*******************************************************************************
* Copyright (c) 2009 Wind River Systems 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.debug.core.model;
import java.math.BigInteger;
/**
* Object representing an address.
* @since 3.5
*/
public interface IMemoryAddress {
* Returns the value of the address.
* @return Value of the address as a big integer.
public BigInteger getValue();
* Returns the address size in bytes.
* @return the number of bytes required to hold this address.
public int getSize();
}