blob: a5313408c25f8934a6762fe7288d9ce83aacf457 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 The University of York.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Dimitrios Kolovos - initial API and implementation
******************************************************************************/
package org.eclipse.epsilon.profiling.dt;
import org.eclipse.epsilon.common.util.StringUtil;
import org.eclipse.jface.viewers.TableViewer;
public class StringTableColumn extends SortableTableColumn {
public StringTableColumn(TableViewer tableViewer, int style) {
super(tableViewer, style);
}
public StringTableColumn(TableViewer tableViewer, int style, int index) {
super(tableViewer, style, index);
}
@Override
public int compare(Object o1, Object o2) {
return StringUtil.toString(o1).compareTo(StringUtil.toString(o2));
}
}