/******************************************************************************* * Copyright (c) 2011, 2015 Wind River Systems, Inc. and others. 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: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.tcf.te.tcf.filesystem.ui.internal.columns; import org.eclipse.tcf.te.tcf.filesystem.core.interfaces.runtime.IFSTreeNode; /** * The comparator for the tree column "Date Accessed". */ public class AccessTimeComparator extends FSTreeNodeComparator { private static final long serialVersionUID = 1L; /* * (non-Javadoc) * @see org.eclipse.tcf.te.tcf.filesystem.internal.columns.FSTreeNodeComparator#doCompare(org.eclipse.tcf.te.tcf.filesystem.model.IFSTreeNode, org.eclipse.tcf.te.tcf.filesystem.model.IFSTreeNode) */ @Override public int doCompare(IFSTreeNode node1, IFSTreeNode node2) { long atime1 = node1.getAccessTime(); long atime2 = node2.getAccessTime(); return atime1 < atime2 ? -1 : (atime1 > atime2 ? 1 : 0); } }