Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java18
1 files changed, 9 insertions, 9 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java
index 0b66289af..106f4839c 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IIndexedValue.java
@@ -4,7 +4,7 @@
* 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -27,23 +27,23 @@ import org.eclipse.debug.core.DebugException;
* @since 3.0
*/
public interface IIndexedValue extends IValue {
-
+
/**
* Returns the variable at the given offset in this collection.
* The offset is zero based.
- * @param offset zero based offset into this collection
+ * @param offset zero based offset into this collection
* @return returns the variable in this collection at the given
* offset
* @throws DebugException if unable to retrieve the variable at the
* given offset
*/
public IVariable getVariable(int offset) throws DebugException;
-
+
/**
* Returns a subset of the elements in this collection of variables as
* specified by the given offset and length.
- *
- * @param offset beginning offset of the subset of elements to return
+ *
+ * @param offset beginning offset of the subset of elements to return
* @param length the number of elements to return
* @return a subset of the elements in this collection of variables as
* specified by the given offset and length
@@ -53,18 +53,18 @@ public interface IIndexedValue extends IValue {
/**
* Returns the number of entries in this indexed collection.
- *
+ *
* @return the number of entries in this indexed collection
* @throws DebugException if unable to determine the number
* of entries in this collection
*/
public int getSize() throws DebugException;
-
+
/**
* Returns the index of the first variable contained in this value.
* Generally, indexed values are zero based, but this allows for
* an arbitrary base offset.
- *
+ *
* @return the index of the first variable contained in this value
*/
public int getInitialOffset();

Back to the top