List of usage examples for org.eclipse.jface.viewers TreePathViewerSorter subclass-usage
From source file com.nokia.s60ct.gui.sorter.FeatureViewerSorter.java
public class FeatureViewerSorter extends TreePathViewerSorter { public int category(TreePath parentPath, Object element) { return super.category(parentPath, element); }
From source file com.nokia.tools.variant.confml.ui.views.CustomSorter.java
/**
*
* Provides an implementation of TreeViewerSorter that uses the given parent to determine the
* correct sort order based on the defined
* <b>org.eclipse.ui.navigator.navigatorContent/navigatorContent/commonSorter</b> elements
* available in the set of <i>visible</i> content extensions.
From source file nexcore.tool.uml.ui.core.dialog.NameSorter.java
/**
* <ul>
* <li> : nexcore.tool.uml.ui.core</li>
* <li> : nexcore.tool.uml.ui.core.dialog</li>
* <li> : NameSorter</li>
* <li>? : 2015. 10. 6.</li>
From source file nexcore.tool.uml.ui.core.project.UMLSorter.java
/**
* <ul>
* <li> : nexcore.tool.uml.ui.core</li>
* <li> : nexcore.tool.uml.ui.core.project</li>
* <li> : UMLSorter</li>
* <li>? : 2010. 2. 3.</li>
From source file nexcore.tool.uml.ui.project.explorer.ExplorerSorter.java
/**
* <ul>
* <li> : nexcore.tool.uml.ui.project</li>
* <li> : nexcore.tool.uml.ui.project.explorer</li>
* <li> : ExplorerSorter</li>
* <li>? : 2010. 2. 3.</li>
From source file org.dslforge.workspace.ui.BasicWorkspaceSorter.java
@SuppressWarnings({ "serial", "restriction" }) public class BasicWorkspaceSorter extends TreePathViewerSorter { static final Logger logger = Logger.getLogger(BasicWorkspaceSorter.class); private static final int LEFT_UNDERSTANDS = 1;
From source file org.eclipse.rcptt.ui.navigator.Q7ViewerSorter.java
public class Q7ViewerSorter extends TreePathViewerSorter { private static final int METADATA = 1; private static final int CONTAINER = 2; private static final int CONTEXT = 3; private static final int SCENARIO = 4;
From source file org.eclipse.tcf.te.ui.trees.TreeViewerSorter.java
/**
* Common sorter implementation.
* <p>
* <b>Note:</b> The default implementation is implementing a case sensitive sorting. Numbers comes
* first, than uppercase before lowercase.
*/
From source file org.eclipse.team.internal.ui.mapping.TeamViewerSorter.java
public class TeamViewerSorter extends TreePathViewerSorter { private CommonViewerSorter sorter; private ResourceComparator resourceComparator; public TeamViewerSorter(CommonViewerSorter sorter) {
From source file org.eclipse.tm.te.tcf.filesystem.controls.FSTreeViewerSorter.java
/** * File system tree control viewer sorter implementation. */ public class FSTreeViewerSorter extends TreePathViewerSorter { private final FSTreeLabelProvider labelProvider = new FSTreeLabelProvider(); private final FSTreeViewerComparator comparator;