Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'memory/org.eclipse.cdt.debug.ui.memory.floatingpoint/src/org/eclipse/cdt/debug/ui/memory/floatingpoint/FPIMemorySelection.java')
-rw-r--r--memory/org.eclipse.cdt.debug.ui.memory.floatingpoint/src/org/eclipse/cdt/debug/ui/memory/floatingpoint/FPIMemorySelection.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/memory/org.eclipse.cdt.debug.ui.memory.floatingpoint/src/org/eclipse/cdt/debug/ui/memory/floatingpoint/FPIMemorySelection.java b/memory/org.eclipse.cdt.debug.ui.memory.floatingpoint/src/org/eclipse/cdt/debug/ui/memory/floatingpoint/FPIMemorySelection.java
new file mode 100644
index 00000000000..aa3767917ca
--- /dev/null
+++ b/memory/org.eclipse.cdt.debug.ui.memory.floatingpoint/src/org/eclipse/cdt/debug/ui/memory/floatingpoint/FPIMemorySelection.java
@@ -0,0 +1,29 @@
+/*******************************************************************************
+ * Copyright (c) 2006, 2010, 2012 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:
+ * Ted R Williams (Wind River Systems, Inc.) - initial implementation
+ * Randy Rohrbach (Wind River Systems, Inc.) - Copied and modified to create the floating point plugin
+ *******************************************************************************/
+
+package org.eclipse.cdt.debug.ui.memory.floatingpoint;
+
+import java.math.BigInteger;
+
+public interface FPIMemorySelection
+{
+ public boolean hasSelection();
+ public boolean isSelected(BigInteger address);
+ public BigInteger getStart();
+ public BigInteger getEnd();
+ public BigInteger getStartLow();
+ public void setStart(BigInteger high, BigInteger low);
+ public void setEnd(BigInteger high, BigInteger low);
+ public BigInteger getHigh();
+ public BigInteger getLow();
+ public void clear();
+}

Back to the top