<!ELEMENT extension (breakpointContainerFactory+)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED>
<!ELEMENT breakpointContainerFactory EMPTY>
<!ATTLIST breakpointContainerFactory
id CDATA #REQUIRED
class CDATA #REQUIRED
label CDATA #REQUIRED
icon CDATA #IMPLIED>
org.eclipse.debug.internal.ui.views.breakpoints.IBreakpointContainerFactoryDelegate
In the above example, the supplied factory will be included in the list of options for grouping breakpoints ("Group By > Project"). When the breakpoints view is set to group breakpoints by project, the factory will query the given class, which implements IBreakpointContainerFactoryDelegate.<extension point=
"org.eclipse.debug.ui.breakpointContainerFactories"
>
<breakpointContainerFactory class=
"org.eclipse.debug.internal.ui.views.breakpoints.BreakpointProjectContainerFactoryDelegate"
id=
"org.eclipse.debug.ui.breakpointProjectContainerFactory"
label=
"Project"
icon=
"icons/full/obj16/prj_obj.gif"
/>
</extension>
Copyright (c) 2004 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made
available under the terms of the Common Public License v1.0 which
accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html