List of usage examples for org.eclipse.jface.viewers IElementComparer interface-usage
From source file com.aptana.ide.ui.io.navigator.FileSystemElementComparer.java
/** * @author Max Stepanov * */ public class FileSystemElementComparer implements IElementComparer {
From source file com.bdaum.zoom.ui.internal.views.IdentifiedElementComparer.java
public final class IdentifiedElementComparer implements IElementComparer { private static IdentifiedElementComparer INSTANCE; public static IdentifiedElementComparer getInstance() { if (INSTANCE == null)
From source file com.buildml.eclipse.ImportSubEditor.java
/**
* An abstract class that BuildML "import" editor tabs (such as FilesEditor and ActionsEditor)
* should be derived from. Editors of this type can be placed within a tab of the top-level
* BuildML. They share common features, such as option settings, item visibility, and
* the ability to filter based on a selected set of packages.
*
From source file com.microsoft.tfs.client.common.ui.vc.tfsitem.ItemPathComparer.java
/** * A comparer for use with ItemPaths and PathElements. This comparer allows * PathElements, such as TFSItems, and ItemPaths to be treated similarly, so a * control using this comparer can work with either type of object. */ public class ItemPathComparer implements IElementComparer {
From source file com.netxforge.netxstudio.screens.editing.tables.CDOElementComparer.java
/**
* A custom comparer which can deal with CDO Objects.
*
* @author Christophe Bouhier
*
*/
From source file com.nextep.designer.vcs.ui.navigators.VersionableNavigatorComparer.java
public class VersionableNavigatorComparer implements IElementComparer { @Override public boolean equals(Object a, Object b) { if (a instanceof ITypedNode && b instanceof ITypedNode) { final ITypedNode nodeA = (ITypedNode) a;
From source file com.symbian.driver.utils.EmfComparer.java
public class EmfComparer implements IElementComparer { public boolean equals(Object arg0, Object arg1) { if (arg0 instanceof EObject && arg1 instanceof EObject) { if (arg0 instanceof DriverImpl && arg1 instanceof DriverImpl) { return true;
From source file com.versant.core.jdo.tools.plugins.eclipse.views.MdComparer.java
/**
* @author dirk
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
From source file eu.geclipse.info.ui.GlueInfoComparator.java
/**
* This class is used to sort the elements in the GlueInfoView.
* The TreeParent obhects are shown first as the considered to
* be folders
* @author tnikos
*
From source file ext.org.eclipse.jdt.internal.ui.packageview.DefaultElementComparer.java
public class DefaultElementComparer implements IElementComparer { public static final DefaultElementComparer INSTANCE = new DefaultElementComparer(); public boolean equals(Object a, Object b) { return a.equals(b);