Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4184c8837a6d7a65c6e0a4786e3d71406fc1dfaa (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) 2012 Wind River Systems, Inc. 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.tcf.debug.test.services;


abstract class IdEventKey<V> extends IdKey<V> {
    private Object fClientKey;

    public IdEventKey(Class<V> eventClazz, String id, Object clientKey) {
        super(eventClazz, id);
        fClientKey = clientKey;
    }

    @Override
    public boolean equals(Object obj) {
        if (super.equals(obj) && obj instanceof IdEventKey<?>) {
            return ((IdEventKey<?>)obj).fClientKey.equals(fClientKey);
        }
        return false;
    }

    @Override
    public int hashCode() {
        return super.hashCode() + fClientKey.hashCode();
    }
}

Back to the top