Skip to main content
summaryrefslogtreecommitdiffstats
blob: 2d53b07fbe0ffaa7cc6da203f2b30ab84d571208 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*******************************************************************************
 * Copyright (c) 2008, 2012 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.cdt.dsf.ui.viewmodel.AbstractVMContext;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.debug.core.model.IBreakpoint;
import org.eclipse.debug.internal.ui.breakpoints.provisional.IBreakpointContainer;
import org.eclipse.debug.internal.ui.breakpoints.provisional.IBreakpointOrganizer;

/**
 * 
 * 
 * @since 2.1
 */
public class BreakpointOrganizerVMContext extends AbstractVMContext implements IBreakpointContainer {

    private final IAdaptable fCategory;
    private final IBreakpoint[] fBreakpoints;
    
    public BreakpointOrganizerVMContext(BreakpointOrganizerVMNode vmNode, IAdaptable category, IBreakpoint[] breakpoints) {
        super(vmNode);
        fCategory = category;
        fBreakpoints = breakpoints;
    }
    
    @Override
    public boolean equals(Object obj) {
        return obj instanceof BreakpointOrganizerVMContext &&
            getVMNode().equals( ((BreakpointOrganizerVMContext)obj).getVMNode() ) &&
            getOrganizer().equals( ((BreakpointOrganizerVMContext)obj).getOrganizer() ) &&
            fCategory.equals(((BreakpointOrganizerVMContext)obj).fCategory); 
    }

    @Override
    public int hashCode() {
        return getOrganizer().hashCode() + getVMNode().hashCode() + fCategory.hashCode();
    }

    @Override
	public IBreakpointOrganizer getOrganizer() {
        return ((BreakpointOrganizerVMNode)getVMNode()).getOrganizer();
    }
    
    @Override
	public IAdaptable getCategory() {
        return fCategory;
    }
    
    @Override
	public boolean contains(IBreakpoint breakpoint) {
        for (IBreakpoint bp : fBreakpoints) {
            if (bp.equals(breakpoint)) {
                return true;
            }
        }
        return false;
    }
    
    @Override
	public IBreakpoint[] getBreakpoints() {
        return fBreakpoints;
    }
    
    @Override
    public String toString() {
        return fCategory.toString();
    }
    
}

Back to the top