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 ch.hsr.ifs.cdt.metriculator.views.TreeColumnViewerSorter.java

/**
 * @see http://bingjava.appspot.com/snippet.jsp?id=2207
 * @author Ueli Kunz
 * */
class TreeColumnViewerSorter extends ViewerComparator {
    public static final int ASC = 1;

From source file cn.dockerfoundry.ide.eclipse.explorer.ui.views.DockerContainerViewerComparator.java

/**
 * @author wangxn
 *
 */
public class DockerContainerViewerComparator extends ViewerComparator {
    private int propertyIndex;

From source file cn.dockerfoundry.ide.eclipse.explorer.ui.views.DockerImageViewerComparator.java

/**
 * @author wangxn
 *
 */
public class DockerImageViewerComparator extends ViewerComparator {
    private int propertyIndex;

From source file com.abstratt.mdd.internal.ui.editors.UIModelObjectViewerComparator.java

public class UIModelObjectViewerComparator extends ViewerComparator {

    public UIModelObjectViewerComparator() {
        super(new ModelChildrenComparator());
    }

From source file com.amazonaws.eclipse.ec2.ui.SelectionTableComparator.java

/**
 * Extension of ViewerComparator that knows which column it is sorting on, which
 * direction, etc. Subclasses must implement the actual comparison logic.
 */
public abstract class SelectionTableComparator extends ViewerComparator {

From source file com.aptana.deploy.wizard.DataTransferWizardCollectionComparator.java

/**
 * A Viewer element sorter that sorts Elements by their name attribute. Note that capitalization differences are not
 * considered by this sorter, so a < B < c. NOTE exceptions to the above: an element with the system's reserved category
 * for Other Wizards will always be sorted such that it will ultimately be placed at the end of the sorted result, and
 * an element with the reserved category name for General wizards will always be placed at the beginning of the sorted
 * result.

From source file com.arm.cmsis.pack.installer.ui.views.TreeColumnComparator.java

/**
 * The Tree comparator used to sort the rows of each column
 */
public class TreeColumnComparator extends ViewerComparator {

    protected final TreeViewer treeViewer;

From source file com.astra.ses.spell.gui.dialogs.controls.DictVariablesColumnComparator.java

/*******************************************************************************
 * @brief
 * @date 
 ******************************************************************************/
public class DictVariablesColumnComparator extends ViewerComparator {
    private enum Direction {

From source file com.bdaum.zoom.ui.internal.ZViewerComparator.java

public class ZViewerComparator extends ViewerComparator {

    public ZViewerComparator() {
        super(UiUtilities.stringComparator);
    }

From source file com.bluexml.side.Requirements.modeler.views.internal.TableComparator.java

public class TableComparator extends ViewerComparator implements Comparator {

    public static final int MAX_DEPTH = 4;

    public static final int ASCENDING = 1;