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 <code>org.eclipse.debug.core.logicalStructureTypes</code>, which allows one logical structure type per value. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance fully qualified name of a Java class that implements <code>ILogicalStructureProvider</code>. identifier of the debug model this logical structure provider is associated with 3.1 The following is an example of a logical structure type extension point: <p> <pre> <extension point="org.eclipse.debug.core.logicalStructureProviders"> <logicalStructureProvider class="com.example.ExampleLogicalStructureProvider" modelIdentifier="com.example.debug.model"> </logicalStructureProvider> </extension> </pre> </p> In the example above, the specified logical structure provider will be consulted for alternative logical structures for values from the <code>com.example.debug.model</code> debug model as they are displayed in the variables view. Value of the attribute <b>class</b> must be a fully qualified name of a Java class that implements the interface <b>org.eclipse.debug.core.ILogicalStructureProvider</b>. Copyright (c) 2004, 2005 IBM Corporation and others.<br> All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a>