blob: 94a9c28673c94a37d5ada5cbf7607b2a74e58197 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2017 IBM Corporation and others.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
*******************************************************************************/
package org.eclipse.dltk.internal.ui.scriptview;
import org.eclipse.dltk.ui.ModelElementSorter;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.ui.IWorkingSet;
public class WorkingSetAwareModelElementSorter extends ModelElementSorter {
@Override
public int compare(Viewer viewer, Object e1, Object e2) {
if (e1 instanceof IWorkingSet || e2 instanceof IWorkingSet)
return 0;
return super.compare(viewer, e1, e2);
}
}