blob: 421eb1e527cefdaa32a4799a90f9b2da0d3fb40e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Francois Chouinard - Initial API and implementation
* Francois Chouinard - Updated as per TMF Trace Model 1.0
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.trace.location;
/**
* A abstract implementation of ITmfLocation. The concrete classes must provide
* comparable location information.
*
* @author Francois Chouinard
*/
public abstract class TmfLocation implements ITmfLocation {
// ------------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------------
private final Comparable<?> fLocationInfo;
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
/**
* Standard constructor.
*
* @param locationInfo
* The concrete trace location
*/
public TmfLocation(final Comparable<?> locationInfo) {
fLocationInfo = locationInfo;
}
/**
* Copy constructor
*
* @param location
* The original trace location
*/
public TmfLocation(final TmfLocation location) {
fLocationInfo = location.fLocationInfo;
}
// ------------------------------------------------------------------------
// Getters
// ------------------------------------------------------------------------
@Override
public Comparable<?> getLocationInfo() {
return fLocationInfo;
}
// ------------------------------------------------------------------------
// Object
// ------------------------------------------------------------------------
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((fLocationInfo != null) ? fLocationInfo.hashCode() : 0);
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final TmfLocation other = (TmfLocation) obj;
if (fLocationInfo == null) {
if (other.fLocationInfo != null) {
return false;
}
} else if (!fLocationInfo.equals(other.fLocationInfo)) {
return false;
}
return true;
}
@Override
@SuppressWarnings("nls")
public String toString() {
return getClass().getSimpleName() + " [fLocationInfo=" + fLocationInfo + "]";
}
}