blob: 326ee17b0cf9d1c91e7c596a1a1e19da63fcadcf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2020 Original authors and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.layer;
public final class LayoutCoordinate {
public final int x;
public final int y;
public LayoutCoordinate(int x, int y) {
this.x = x;
this.y = y;
}
public int getColumnPosition() {
return this.x;
}
public int getRowPosition() {
return this.y;
}
@Override
public String toString() {
return getClass().getSimpleName() + "[" + this.x + "," + this.y + "]"; //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
}
@Override
public boolean equals(Object obj) {
if (obj == this)
return true;
if (obj == null || obj.getClass() != getClass())
return true;
LayoutCoordinate pc = (LayoutCoordinate) obj;
return pc.getRowPosition() == getRowPosition()
&& pc.getColumnPosition() == getColumnPosition();
}
@Override
public int hashCode() {
int hash = 77;
hash = 11 * hash + getRowPosition() + 99;
hash = 11 * hash + getColumnPosition();
return hash;
}
}