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 gov.redhawk.prf.internal.ui.editor.AbstractPropertyViewerComparator.java

public class AbstractPropertyViewerComparator extends ViewerComparator {

    /**
     * {@inheritDoc}
     */
    @Override

From source file ilg.gnuarmeclipse.debug.gdbjtag.render.peripheral.PeripheralViewerComparator.java

/**
 * Comparator used to sort columns in the Peripheral monitor.
 * 
 * Inspired by the code provided by Lars Vogella.
 */
public class PeripheralViewerComparator extends ViewerComparator {

From source file ilg.gnumcueclipse.debug.gdbjtag.render.peripheral.PeripheralViewerComparator.java

/**
 * Comparator used to sort columns in the Peripheral monitor.
 * 
 * Inspired by the code provided by Lars Vogella.
 */
public class PeripheralViewerComparator extends ViewerComparator {

From source file it.eng.spagobi.meta.querybuilder.ui.shared.result.ResultTableComparator.java

/**
 * @author Alberto Ghedin (alberto.ghedin@eng.it)
 *
 */

public class ResultTableComparator extends ViewerComparator {

From source file name.schedenig.eclipse.grepconsole.view.styles.StyleComparator.java

/**
 * Comapres two styles by name. Can handle the style content provider's null
 * element style.
 * 
 * @author msched
 */

From source file net.enilink.komma.edit.ui.provider.reflective.ObjectComparator.java

public class ObjectComparator extends ViewerComparator {
    @Override
    public int category(Object element) {
        if (!(element instanceof Resource))
            return 0;

From source file net.sourceforge.c4jplugin.internal.ui.contracthierarchy.AbstractHierarchyViewerSorter.java

/**
  */
public abstract class AbstractHierarchyViewerSorter extends ViewerComparator {

    private static final int OTHER = 1;
    private static final int CLASS = 2;

From source file net.sourceforge.eclipsetrader.internal.ui.views.explorer.InstrumentsViewerComparator.java

/**
 * Implements the security tree comparator that sorts the elements alphabetically,
 * with the groups as the topmost elements.
 */
public class InstrumentsViewerComparator extends ViewerComparator {

From source file net.sourceforge.tagsea.core.ui.waypoints.WaypointTableColumnSorter.java

/**
 * Sorts waypoints in a table viewer by one of Message, Author, or Date.
 * @author Del Myers
 *
 */
public class WaypointTableColumnSorter extends ViewerComparator {

From source file net.tourbook.common.color.Map3ProfileComparator.java

public class Map3ProfileComparator extends ViewerComparator {

    @Override
    public int compare(final Viewer viewer, final Object c1, final Object c2) {

        if (c1 instanceof Map3GradientColorProvider && c2 instanceof Map3GradientColorProvider) {