blob: 810835c38af0fc1ba1f7e13e4d0b15d973d48b02 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2018 Agence spatiale canadienne / Canadian Space Agency
* 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:
* Pierre Allard,
* Regent L'Archeveque,
* Olivier L. Larouche - initial API and implementation
* SPDX-License-Identifier: EPL-1.0
*
*******************************************************************************/
package org.eclipse.apogy.common.emf.impl;
import org.eclipse.apogy.common.emf.Timed;
public class TimedComparatorCustomImpl<T extends Timed> extends TimedComparatorImpl<T> {
public int compare(Timed o1, Timed o2) {
long t1 = o1.getTime().getTime();
long t2 = o2.getTime().getTime();
if (t1 < t2) {
return -1;
} else if (t1 > t2) {
return 1;
} else {
return 0;
}
}
} // TimedComparatorImpl