KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > debug > ui > IBreakpointTypeCategory


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.debug.ui;
12
13 import org.eclipse.core.runtime.IAdaptable;
14
15 /**
16  * Represents a breakpoint's type to support organization of breakpoints
17  * by type in the breakpoints view. A default breakpoint type adapter
18  * is provided for breakpoints by the debug platform, but clients may override
19  * the default adapter by providing their own adapter for breakpoints.
20  * <p>
21  * A breakpoint type category is an adaptable that must provide an
22  * <code>IWorkbenchAdapter</code> such that it can be rendered in the
23  * breakpoints view.
24  * </p>
25  * <p>
26  * Implementations should ensure that <code>equals</code> and <code>hashCode</code>
27  * are implemented properly to reflect the equality of type categories.
28  * </p>
29  * <p>
30  * Clients may implement this interface.
31  * </p>
32  * @see org.eclipse.debug.ui.BreakpointTypeCategory
33  * @since 3.1
34  */

35 public interface IBreakpointTypeCategory extends IAdaptable {
36
37 }
38
Popular Tags