tmf: Update copyright headers in tmf.ui
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / uml2sd / util / TimeEventComparator.java
CommitLineData
73005152 1/**********************************************************************
c8422608 2 * Copyright (c) 2005, 2012 IBM Corporation, Ericsson
73005152
BH
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
013a5f1c
AM
7 *
8 * Contributors:
c8422608
AM
9 * IBM - Initial API and implementation
10 * Bernd Hufmann - Updated for TMF
73005152 11 **********************************************************************/
c8422608 12
73005152
BH
13package org.eclipse.linuxtools.tmf.ui.views.uml2sd.util;
14
15import java.io.Serializable;
16import java.util.Comparator;
17
18import org.eclipse.linuxtools.tmf.ui.views.uml2sd.core.SDTimeEvent;
19
20/**
21 * Time event comparator
013a5f1c
AM
22 *
23 * @version 1.0
73005152 24 * @author sveyrier
73005152
BH
25 */
26public class TimeEventComparator implements Comparator<SDTimeEvent>, Serializable {
27
df0b8ff4
BH
28 // ------------------------------------------------------------------------
29 // Constants
30 // ------------------------------------------------------------------------
31
73005152
BH
32 /**
33 * Serial version UID
34 */
35 private static final long serialVersionUID = 5885497718872575669L;
36
df0b8ff4
BH
37 // ------------------------------------------------------------------------
38 // Methods
39 // ------------------------------------------------------------------------
40
41 /*
42 * (non-Javadoc)
43 * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object)
73005152
BH
44 */
45 @Override
46 public int compare(SDTimeEvent arg0, SDTimeEvent arg1) {
abbdd66a
AM
47 SDTimeEvent t1 = arg0;
48 SDTimeEvent t2 = arg1;
df0b8ff4 49 if (t1.getEvent() > t2.getEvent()) {
73005152 50 return 1;
df0b8ff4
BH
51 }
52 else if (t1.getEvent() == t2.getEvent()) {
73005152 53 return 0;
df0b8ff4
BH
54 }
55 return -1;
73005152 56 }
73005152 57}
This page took 0.034446 seconds and 5 git commands to generate.