Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: aca90354baaaba35b925a9fad89c7bf5862c8c15 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.ui;

import org.eclipse.core.runtime.IAdaptable;

/**
 * Represents a breakpoint's type to support organization of breakpoints
 * by type in the breakpoints view. A default breakpoint type adapter
 * is provided for breakpoints by the debug platform, but clients may override
 * the default adapter by providing their own adapter for breakpoints.
 * <p>
 * A breakpoint type category is an adaptable that must provide an
 * <code>IWorkbenchAdapter</code> such that it can be rendered in the
 * breakpoints view.
 * </p>
 * <p>
 * Implementations should ensure that <code>equals</code> and <code>hashCode</code>
 * are implemented properly to reflect the equality of type categories.
 * </p>
 * <p>
 * Clients may implement this interface.
 * </p>
 * @see org.eclipse.debug.ui.BreakpointTypeCategory
 * @since 3.1
 */
public interface IBreakpointTypeCategory extends IAdaptable {

}

Back to the top