public interface ILogicalStructureProvider
The following is an example of a logical structure provider extension:
<extension point="org.eclipse.debug.core.logicalStructureProviders"> <logicalStructureProvider class="com.example.ExampleLogicalStructureProvider" modelIdentifier="com.example.debug.model"> </logicalStructureProvider> </extension>In the example above, the specified logical structure provider will be consulted for alternative logical structures for values from the
com.example.debug.model
debug model as they are displayed in the variables view.
Clients contributing logical structure providers must implement this interface.
ILogicalStructureType
Modifier and Type | Method and Description |
---|---|
ILogicalStructureType[] |
getLogicalStructureTypes(IValue value)
Returns the logical structure types which are applicable to the given value.
|
ILogicalStructureType[] getLogicalStructureTypes(IValue value)
value
- value for which logical structure types are being requested
Copyright (c) 2000, 2014 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.