List of usage examples for org.eclipse.jface.viewers ViewerComparator subclass-usage
From source file eu.geclipse.ui.comparators.TreeColumnComparator.java
/** * This comparator is used to sort the tree entries according to the selected * sorting column, with a second ordering column as fallback if entries compare * equal. */ public class TreeColumnComparator extends ViewerComparator {
From source file ext.org.eclipse.jdt.internal.ui.typehierarchy.AbstractHierarchyViewerSorter.java
/** */ public abstract class AbstractHierarchyViewerSorter extends ViewerComparator { private static final int OTHER = 1; private static final int CLASS = 2;
From source file ext.org.eclipse.jdt.internal.ui.viewsupport.SourcePositionComparator.java
/**
* Viewer sorter which sorts the Java elements like
* they appear in the source.
*
* @since 3.2
*/
From source file ext.org.eclipse.jdt.internal.ui.wizards.buildpaths.CPListElementSorter.java
public class CPListElementSorter extends ViewerComparator { private static final int SOURCE = 0; private static final int PROJECT = 1; private static final int LIBRARY = 2; private static final int VARIABLE = 3;
From source file fr.liglab.adele.cilia.workbench.monitoring.changesview.ChangesTableSorterComparator.java
/** * The Class ChangesTableSorterComparator. * @author Etienne Gandrille */ public class ChangesTableSorterComparator extends ViewerComparator {
From source file gov.nasa.arc.spife.core.plan.rules.view.PlanRulesViewerComparator.java
public class PlanRulesViewerComparator extends ViewerComparator { private IPlanRulesSortableColumn key = null; private boolean reverse = false; public IPlanRulesSortableColumn getKey() {
From source file gov.nasa.ensemble.common.ui.TableViewerSorter.java
/**
* An abstract class that can be specialized to add sorting behavior to the columns of a TableViewer
*
* Extracted from Snippet040TableViewerSorting at http://wiki.eclipse.org/index.php/JFaceSnippets
* and renamed from ColumnViewerSorter to TableViewerSorter as it is only appropriate
* for use with a TableViewer.
From source file gov.nasa.ensemble.common.ui.treetable.DefaultViewerComparator.java
public class DefaultViewerComparator extends ViewerComparator { public static final DefaultViewerComparator INSTANCE = new DefaultViewerComparator(); /** * @param viewer
From source file gov.nasa.ensemble.common.ui.treetable.TreeTableViewerComparator.java
public class TreeTableViewerComparator extends ViewerComparator { private final boolean reverse; private final ITreeTableColumn column; public TreeTableViewerComparator(ITreeTableColumn column, boolean reverse) {
From source file gov.nasa.ensemble.core.plan.advisor.view.ViolationViewerComparator.java
public class ViolationViewerComparator extends ViewerComparator { private ViolationKey key = ViolationKey.TIME; private boolean reverse = false; public ViolationKey getKey() {