Logical Structure Providers

Identifier:
org.eclipse.debug.core.logicalStructureProviders

Since:
3.1

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

Configuration Markup:

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


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

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


Copyright (c) 2004, 2005 IBM Corporation and others.
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-v20.html/ SPDX-License-Identifier: EPL-2.0