List of usage examples for org.eclipse.jface.viewers ViewerComparator subclass-usage
From source file org.talend.designer.runtime.visualization.internal.ui.properties.memory.HeapComparator.java
/** * The heap comparator. */ public class HeapComparator extends ViewerComparator { /** the sort direction */
From source file org.talend.designer.runtime.visualization.internal.ui.properties.thread.ThreadComparator.java
/** * The thread comparator. */ public class ThreadComparator extends ViewerComparator { /** the sort direction */
From source file org.testeditor.dashboard.MyViewerComparator.java
/** * @author alebedev * * sorting for columns */ public class MyViewerComparator extends ViewerComparator {
From source file org.testeditor.ui.parts.commons.TestStructureViewerComparator.java
/** * * Comaparator to Sort Teststructures. * */ public class TestStructureViewerComparator extends ViewerComparator {
From source file org.thanlwinsoft.languagetest.eclipse.editors.TestItemSorter.java
/** * @author keith * */ public class TestItemSorter extends ViewerComparator { private String column = null;
From source file org.topcased.pickerexplorer.ui.views.pickerlist.PickerListComparator.java
class PickerListComparator extends ViewerComparator { @SuppressWarnings("unchecked") @Override public int compare(Viewer viewer, Object e1, Object e2) {
From source file org.universaal.uaalpax.ui.BundleComparator.java
public class BundleComparator extends ViewerComparator { private int sortDirection = SWT.NONE; private String sortProperty = BundleEntry.PROP_PROJECT; public void setSortDirection(int direction) { sortDirection = direction;
From source file org.xkonnex.repo.dsl.basedsl.ui.hierarchy.AbstractHierarchyViewerSorter.java
/** */ public abstract class AbstractHierarchyViewerSorter extends ViewerComparator { private IEObjectLookup lookup;
From source file scouter.client.sorter.ColumnLabelSorter.java
public class ColumnLabelSorter extends ViewerComparator { public static final int ORDER_ASC = 1; public static final int NONE = 0; public static final int ORDER_DESC = -1; private TableColumn col = null;
From source file scouter.client.sorter.TableLabelSorter.java
public class TableLabelSorter extends ViewerComparator { public static final int ORDER_ASC = 1; public static final int NONE = 0; public static final int ORDER_DESC = -1; private TableColumn col = null;