Example usage for org.eclipse.jface.viewers ViewerComparator subclass-usage

List of usage examples for org.eclipse.jface.viewers ViewerComparator subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.viewers ViewerComparator subclass-usage.

Usage

From source file org.apache.opennlp.caseditor.PotentialAnnotationComperator.java

/**
 * Compares two entities. Entities which have a smaller begin index are ordered first.
 * If entities have an identical begin index the one with the higher confidence score
 * is ordered first.
 */
public class PotentialAnnotationComperator extends ViewerComparator {

From source file org.bbaw.pdr.ae.config.core.ConfigDataComparator.java

/**
 * The Class ConfigDataComparator.
 * @author Christoph Plutte
 */
public class ConfigDataComparator extends ViewerComparator implements Comparator<ConfigData> {
    /** The ascending. */

From source file org.bbaw.pdr.ae.view.control.comparator.PdrObjectViewComparator.java

/**
 * The Class PdrObjectViewComparator.
 * @author Christoph Plutte
 */
public class PdrObjectViewComparator extends ViewerComparator {

From source file org.bbaw.pdr.ae.view.main.preferences.provider.FavoriteMarkupComparator.java

/**
 * The Class FavoriteMarkupComparator.
 * @author Christoph Plutte
 */
public class FavoriteMarkupComparator extends ViewerComparator implements Comparator<ConfigData> {

From source file org.bonitasoft.studio.common.jface.TableColumnSorter.java

public class TableColumnSorter extends ViewerComparator {

    public static final int ASC = 1;
    public static final int NONE = 0;
    public static final int DESC = -1;

From source file org.bonitasoft.studio.importer.ImporterPriorityDisplayComparator.java

/**
 * @author Aurelien Pupier
 */
public class ImporterPriorityDisplayComparator extends ViewerComparator {

    @Override

From source file org.csstudio.alarm.beast.msghist.gui.MessageIDComparator.java

/** ViewerComparator for sorting Messages by ID.
 *  @author Kay Kasemir
 */
public class MessageIDComparator extends ViewerComparator {
    final private boolean up;

From source file org.csstudio.alarm.beast.msghist.gui.MessagePropertyComparator.java

/** ViewerComparator (= table sorter) that compares a single property.
 *  @author Kay Kasemir
 */
public class MessagePropertyComparator extends ViewerComparator {
    final private String property;
    final private boolean up;

From source file org.csstudio.alarm.beast.msghist.gui.MessageSeqComparator.java

/** ViewerComparator for sorting Messages by sequence number.
 *  @author Kay Kasemir
 */
public class MessageSeqComparator extends ViewerComparator {
    final private boolean up;

From source file org.csstudio.alarm.beast.ui.globaltable.GlobalAlarmComparator.java

/** Base for implementing a comparator for sorting a table
 *  that sorts global alarm columns up/down.
 *  Derived class must implement the actual comparison.
 *  @author Kay Kasemir
 */
abstract public class GlobalAlarmComparator extends ViewerComparator {