Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

org.eclipse.debug.core.model
Interface IIndexedValue

All Superinterfaces:
IAdaptable, IDebugElement, IValue

public interface IIndexedValue
extends IValue

A value containing an indexed collection of variables - for example, an array.

The indexed collection value has been added to the debug model to support automatic partitioning of large arrays in the debug UI. Clients are not required to implement this interface for values representing indexed collections, however, doing so will provide enhanced display options in the debug UI.

Clients may implement this interface.

Since:
3.0

Method Summary
 int getInitialOffset ()
          Returns the index of the first variable contained in this value.
 int getSize ()
          Returns the number of entries in this indexed collection.
  IVariable getVariable (int offset)
          Returns the variable at the given offset in this collection.
  IVariable[] getVariables (int offset, int length)
          Returns a subset of the elements in this collection of variables as specified by the given offset and length.
 
Methods inherited from interface org.eclipse.debug.core.model. IValue
getReferenceTypeName, getValueString, getVariables, hasVariables, isAllocated
 
Methods inherited from interface org.eclipse.debug.core.model. IDebugElement
getDebugTarget, getLaunch, getModelIdentifier
 
Methods inherited from interface org.eclipse.core.runtime. IAdaptable
getAdapter
 

Method Detail

getVariable


IVariable getVariable(int offset)
                      throws 
DebugException
Returns the variable at the given offset in this collection. The offset is zero based.

Parameters:
offset - zero based offset into this collection
Returns:
returns the variable in this collection at the given offset
Throws:
DebugException - if unable to retrieve the variable at the given offset

getVariables


IVariable[] getVariables(int offset,
                         int length)
                         throws 
DebugException
Returns a subset of the elements in this collection of variables as specified by the given offset and length.

Parameters:
offset - beginning offset of the subset of elements to return
length - the number of elements to return
Returns:
a subset of the elements in this collection of variables as specified by the given offset and length
Throws:
DebugException - if unable to retrieve the variables

getSize

int getSize()
            throws 
DebugException
Returns the number of entries in this indexed collection.

Returns:
the number of entries in this indexed collection
Throws:
DebugException - if unable to determine the number of entries in this collection

getInitialOffset

int getInitialOffset()
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.

Returns:
the index of the first variable contained in this value

Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire