Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d739679e2d81335da8bcf532a306229de6b69d1c (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
/*******************************************************************************
 * Copyright (c) 2000, 2017 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
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.team.internal.ui.synchronize;

import org.eclipse.compare.structuremergeviewer.IDiffContainer;
import org.eclipse.core.resources.IResource;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.team.internal.core.subscribers.ChangeSet;
import org.eclipse.team.internal.ui.ITeamUIImages;
import org.eclipse.team.internal.ui.TeamUIPlugin;

/**
 * Node that represents a Change set in a synchronize page.
 */
public class ChangeSetDiffNode extends SynchronizeModelElement {

    private final ChangeSet set;

    public ChangeSetDiffNode(IDiffContainer parent, ChangeSet set) {
        super(parent);
        this.set = set;
    }

    @Override
	public IResource getResource() {
        return null;
    }

    public ChangeSet getSet() {
        return set;
    }

	@Override
	public ImageDescriptor getImageDescriptor(Object object) {
		return TeamUIPlugin.getImageDescriptor(ITeamUIImages.IMG_CHANGE_SET);
	}

	@Override
	public String getName() {
		return set.getName();
	}

	@Override
	public String toString() {
		return getName();
	}

    @Override
	public int hashCode() {
        return set.hashCode();
    }

    @Override
	public boolean equals(Object object) {
        if (object instanceof ChangeSetDiffNode) {
            return((ChangeSetDiffNode)object).getSet() == set;
        }
        return super.equals(object);
    }

    @SuppressWarnings("unchecked")
	@Override
	public <T> T getAdapter(Class<T> adapter) {
        if (adapter.equals(ChangeSet.class)) {
            return (T) set;
        }
        return super.getAdapter(adapter);
    }
}

Back to the top