Logical Structure Providers

org.eclipse.debug.core.logicalStructureProviders

3.1

This extension point allows contributors to provide multiple logical structure types for a value. This is an extension of the logical structure support provided by the extension point org.eclipse.debug.core.logicalStructureTypes, which allows one logical structure type per value.

<!ELEMENT extension (logicalStructureProvider*)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT logicalStructureProvider EMPTY>

<!ATTLIST logicalStructureProvider

class           CDATA #REQUIRED

modelIdentifier CDATA #REQUIRED>


The following is an example of a logical structure type extension point:

 

<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.

Value of the attribute class must be a fully qualified name of a Java class that implements the interface org.eclipse.debug.core.ILogicalStructureProvider.