Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 85ef1622c5833c3fea5e9a2afd33fc2f46a5330d (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
79
80
81
82
83
84
85
86
87
/*****************************************************************************
 * Copyright (c) 2013 CEA LIST.
 *
 *    
 * 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:
 *  Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.nattable.utils;

import org.eclipse.papyrus.infra.nattable.model.nattable.nattablecell.ICellAxisWrapper;


/**
 * This class is used as key to find easily the cell for a row and a column in the table metamodel
 * 
 * @author vl222926
 * 
 */
public class CellMapKey {



	/**
	 * the column element
	 */
	private final Object columnElement;

	/**
	 * the row element
	 */
	private final Object rowElement;

	/**
	 * 
	 * Constructor.
	 * 
	 * @param columnElement
	 *        the columnElement
	 * @param rowElement
	 *        the rowElement
	 */
	public CellMapKey(final Object columnElement, final Object rowElement) {
		if(columnElement instanceof ICellAxisWrapper) {
			this.columnElement = AxisUtils.getRepresentedElement(((ICellAxisWrapper)columnElement).getElement());
		} else {
			this.columnElement = AxisUtils.getRepresentedElement(columnElement);
		}
		if(rowElement instanceof ICellAxisWrapper) {
			this.rowElement = AxisUtils.getRepresentedElement(((ICellAxisWrapper)rowElement).getElement());
		} else {
			this.rowElement = AxisUtils.getRepresentedElement(rowElement);
		}
	}

	/**
	 * 
	 * @see java.lang.Object#hashCode()
	 * 
	 * @return
	 */
	@Override
	public int hashCode() {
		int hashCode = this.columnElement.hashCode() + 10 * this.rowElement.hashCode();
		return hashCode;
	}

	/**
	 * 
	 * @see java.lang.Object#equals(java.lang.Object)
	 * 
	 * @param obj
	 * @return
	 */
	@Override
	public boolean equals(Object obj) {
		if(obj instanceof CellMapKey) {
			return obj.hashCode() == hashCode();
		}
		return false;
	}
}

Back to the top