blob: f011a5b4264b97a24b2665ee459f215ea06505fc [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2005, 2014 IBM Corporation, 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:
* IBM - Initial API and implementation
* Bernd Hufmann - Updated for TMF
**********************************************************************/
package org.eclipse.tracecompass.tmf.ui.views.uml2sd.util;
import java.io.Serializable;
import java.util.Comparator;
import org.eclipse.tracecompass.tmf.ui.views.uml2sd.core.SDTimeEvent;
/**
* Time event comparator
*
* @version 1.0
* @author sveyrier
*/
public class TimeEventComparator implements Comparator<SDTimeEvent>, Serializable {
// ------------------------------------------------------------------------
// Constants
// ------------------------------------------------------------------------
/**
* Serial version UID
*/
private static final long serialVersionUID = 5885497718872575669L;
// ------------------------------------------------------------------------
// Methods
// ------------------------------------------------------------------------
@Override
public int compare(SDTimeEvent arg0, SDTimeEvent arg1) {
SDTimeEvent t1 = arg0;
SDTimeEvent t2 = arg1;
if (t1.getEvent() > t2.getEvent()) {
return 1;
}
else if (t1.getEvent() == t2.getEvent()) {
return 0;
}
return -1;
}
}