blob: a381e9ff72c3eebeaa290a018833e64341e8d3eb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* - Mickael Istria (Red Hat Inc.)
*******************************************************************************/
package org.eclipse.ui.internal.genericeditor;
import java.util.Comparator;
import org.eclipse.core.runtime.content.IContentType;
/**
* Compares extension so that the ones with the most "specialized" content-types are returned first.
*
* @param <T>
*/
public class ContentTypeSpecializationComparator<T> implements Comparator<GenericContentTypeRelatedExtension<T>> {
@Override
public int compare(GenericContentTypeRelatedExtension<T> o1, GenericContentTypeRelatedExtension<T> o2) {
return depth(o2.targetContentType) - depth(o1.targetContentType);
}
public static int depth(IContentType targetContentType) {
int res = 0;
IContentType current = targetContentType;
while (current != null) {
res++;
current = current.getBaseType();
}
return res;
}
}