Breakpoint organizers categorize breakpoints based on some specific criteria. For example, a breakpoint organizer is provided to categorize breakpoints by project. Organizers with the specified name will be automatically created by the Debug Platform and presented to the user as options for grouping breakpoints. The supplied class, which must implement org.eclipse.debug.ui.IBreakpointOrganizerDelegate, will be loaded only as necessary, to avoid early plugin activation. a fully qualified identifier of the target extension point an optional identifier of the extension instance an optional name of the extension instance Unique identifier for this breakpoint organizer. Implementation of <code>org.eclipse.debug.ui.IBreakpointOrganizerDelegate</code> that performs categorization. Since 3.3, the class may optionally implement <code>org.eclipse.debug.ui.IBreakpointOrganizerDelegateExtension</code>. Label for this organizer which is suitable for presentation to the user. Optional path to an icon which can be shown for this organizer. Optional label for this organizer which is suitable for presentation to the user to describe breakpoints that do not fall into a category supplied by this organizer. For example, if an organizer categorizes breakpoints by working sets, but a breakpoint does not belong to a working set, this label will be used. When unspecified, "Others" is used. 3.1 Following is an example of a breakpoint organizer extension. <pre> <extension point="org.eclipse.debug.ui.breakpointOrganizers"> <breakpointOrganizer class="com.example.BreakpointOrganizer" id="com.example.BreakpointOrganizer" label="Example Organizer" icon="icons/full/obj16/example_org.png"/> </extension> </pre> In the above example, the supplied factory will be included in the list of options for grouping breakpoints ("Group By > Example Organizer"). When selected, the associated organizer will be used to categorize breakpoints. 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.ui.IBreakpointOrganizerDelegate</b>. Since 3.3 the class may optionally implement <b>org.eclipse.debug.ui.IBreakpointOrganizerDelegateExtension</b>. The Debug Platform provides breakpoint organizers for projects, files, breakpoint types, and working sets. Copyright (c) 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>