This extension point allows debuggers to present alternative logical structures of values. Often, complex data structures are more convenient to navigate in terms of their logical structure, rather than in terms of their implementation. For example, no matter how a list is implemented (linked, array, etc.), a user may simply want to see the elements in the list in terms of an ordered collection. This extension point allows the contribution of logical structure types, to provide translations from a raw implementation value to a logical value. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance a unique identifier for this logical structure type a description of this logical structure. Since 3.1, this attribute is optional. When unspecified, a logical structure type delegate must also implement <code>ILogicalStructureTypeDelegate2</code> to provide descriptions for values that logical structures are provided for. fully qualified name of a Java class that implements <code>ILogicalStructureTypeDelegate</code>. The class may optionally implement <code>ILogicalStructureTypeDelegate2</code>. identifier of the debug model this logical structure type is associated with 3.0 The following is an example of a logical structure type extension point: <p> <pre> <extension point="org.eclipse.debug.core.logicalStructureTypes"> <logicalStructureType id="com.example.ExampleLogicalStructure" class="com.example.ExampleLogicalStructureDelegate" modelIdentifier="com.example.debug.model" description="Ordered Collection"> </logicalStructureType> </extension> </pre> </p> In the example above, the specified logical structure type will be consulted for alternative logical values 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.model.ILogicalStructureTypeDelegate</b>. Copyright (c) 2000, 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>