Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Eclipse Plug-in Developer Guide
Previous Page Home Next Page

Breakpoint Organizers

Identifier:
org.eclipse.debug.ui.breakpointOrganizers

Since:
3.1

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

Configuration Markup:

<!ELEMENT extension ( breakpointOrganizer+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED

>

  • point - a fully qualified identifier of the target extension point
  • id - an optional identifier of the extension instance
  • name - an optional name of the extension instance

<!ELEMENT breakpointOrganizer EMPTY>

<!ATTLIST breakpointOrganizer

id          CDATA #REQUIRED

class       CDATA #REQUIRED

label       CDATA #REQUIRED

icon        CDATA #IMPLIED

othersLabel CDATA #IMPLIED

>

  • id - Unique identifier for this breakpoint organizer.
  • class - Implementation of org.eclipse.debug.ui.IBreakpointOrganizerDelegate that performs categorization. Since 3.3, the class may optionally implement org.eclipse.debug.ui.IBreakpointOrganizerDelegateExtension.
  • label - Label for this organizer which is suitable for presentation to the user.
  • icon - Optional path to an icon which can be shown for this organizer.
  • othersLabel - 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.

Examples:
Following is an example of a breakpoint organizer extension.

<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.gif"
/>
</extension>

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.

Supplied Implementation:
The Debug Platform provides breakpoint organizers for projects, files, breakpoint types, and working sets.


Copyright (c) 2005 IBM Corporation and others.
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 https://www.eclipse.org/legal/epl-v10.html


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire