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 com.opcoach.e34.tools.views.MigrationDataComparator.java

/**
* An entry comparator for the table, dealing with column index, keys and
* values
*/
public class MigrationDataComparator extends ViewerComparator {
    private int columnIndex;

From source file com.opcoach.e34tools.views.MigrationDataComparator.java

/**
* An entry comparator for the table, dealing with column index, keys and
* values
*/
public class MigrationDataComparator extends ViewerComparator {
    private int columnIndex;

From source file com.sigasi.emfstats.StatsComparator.java

public class StatsComparator extends ViewerComparator {
    private int columnToSort;
    private static final int DESCENDING = 1;
    private int direction = DESCENDING;

    public StatsComparator() {

From source file com.siteview.mde.internal.ui.views.dependencies.DependenciesViewComparator.java

public class DependenciesViewComparator extends ViewerComparator {

    private static DependenciesViewComparator fComparator = null;

    private DependenciesViewComparator() {
        super();

From source file com.siteview.mde.internal.ui.wizards.WizardCollectionComparator.java

public class WizardCollectionComparator extends ViewerComparator {
    private String baseCategory;

    public WizardCollectionComparator(String baseCategory) {
        this.baseCategory = baseCategory;
    }

From source file com.softberries.klerk.gui.helpers.table.SimpleKlerkComparator.java

public abstract class SimpleKlerkComparator extends ViewerComparator {
    protected int propertyIndex;
    protected static final int DESCENDING = 1;
    protected int direction = DESCENDING;

    public SimpleKlerkComparator() {

From source file com.synflow.ngDesign.ui.internal.navigator.CxComparator.java

/**
 * This class defines a simple sorter for our Project Explorer view.
 * 
 * @author Matthieu Wipliez
 * 
 */

From source file com.toedter.e4.demo.contacts.rap.views.ContactViewerComparator.java

class ContactViewerComparator extends ViewerComparator {

    @Override
    public int compare(final Viewer viewer, final Object obj1, final Object obj2) {

        if (obj1 instanceof Contact && obj2 instanceof Contact) {

From source file com.toedter.e4.demo.contacts.swt.views.ContactViewerComparator.java

class ContactViewerComparator extends ViewerComparator {

    @Override
    public int compare(final Viewer viewer, final Object obj1, final Object obj2) {

        if (obj1 instanceof Contact && obj2 instanceof Contact) {

From source file com.vectrace.MercurialEclipse.TableColumnSorter.java

public abstract class TableColumnSorter extends ViewerComparator {
    public static final int ASC = 1;

    public static final int NONE = 0;

    public static final int DESC = -1;