Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 123132 Details for
Bug 257842
[memory] Expression Evaluation API
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
updated
257842-2.txt (text/plain), 1.74 KB, created by
Ted Williams
on 2009-01-20 17:19:00 EST
(
hide
)
Description:
updated
Filename:
MIME Type:
Creator:
Ted Williams
Created:
2009-01-20 17:19:00 EST
Size:
1.74 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.debug.core >Index: core/org/eclipse/debug/core/model/IMemoryAddress.java >=================================================================== >RCS file: core/org/eclipse/debug/core/model/IMemoryAddress.java >diff -N core/org/eclipse/debug/core/model/IMemoryAddress.java >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ core/org/eclipse/debug/core/model/IMemoryAddress.java 1 Jan 1970 00:00:00 -0000 >@@ -0,0 +1,40 @@ >+/******************************************************************************* >+ * Copyright (c) 2009 Wind River 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 (Ted Williams) - initial API and implementation >+ *******************************************************************************/ >+package org.eclipse.debug.core.model; >+ >+ >+import java.math.BigInteger; >+ >+import org.eclipse.debug.core.DebugException; >+ >+/** >+ * A memory address represents the address of a variable. >+ * <p> >+ * Clients may implement this interface. >+ * </p> >+ * * @since 3.5 >+ */ >+ >+ >+public interface IMemoryAddress extends IDebugElement { >+ >+ /** >+ * Returns this values memory address as a <code>BigInteger</code>. >+ * >+ * @return a BigInteger representation of the memory address >+ * @exception DebugException if this method fails. Reasons include: >+ * <ul><li>Failure communicating with the VM. The DebugException's >+ * status code contains the underlying exception responsible for >+ * the failure.</li> >+ */ >+ public BigInteger getValueAddress() throws DebugException; >+ >+}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 257842
:
123121
|
123132
|
123279
|
123406