Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c31f4c14895bc3ab0a85b47d7cd112e1376758e1 (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
/*******************************************************************************
 * Copyright (c) 2008 Wind River Systems 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
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.ui.viewmodel.breakpoints;

import org.eclipse.debug.core.model.IBreakpoint;

/**
 * Breakpoint node which uses raw breakpiont objects (without a wrapper) as 
 * elements which are populated into the view.  The breakpoint objects are 
 * responsible for supplying their own label and memento providers, as well
 * as content provider for any children.
 * 
 * @since 2.1
 */
public class RawBreakpointVMNode extends AbstractBreakpointVMNode {

    public RawBreakpointVMNode(BreakpointVMProvider provider) {
        super(provider);
    }

    @Override
    protected Object createBreakpiontElement(IBreakpoint bp) {
        return bp;
    }
}

Back to the top