blob: fcae9882ed5f13cb07ded9de79be4358149cc29c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2015 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.resources.content;
import java.util.*;
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.core.runtime.content.IContentTypeManager.ISelectionPolicy;
public class SubsetSelectionPolicy implements ISelectionPolicy {
private Set<IContentType> subset;
public SubsetSelectionPolicy(IContentType[] subset) {
this.subset = new HashSet<>(Arrays.asList(subset));
}
@Override
public IContentType[] select(IContentType[] candidates, boolean fileName, boolean content) {
List<IContentType> result = new ArrayList<>(candidates.length);
for (IContentType candidate : candidates) {
if (subset.contains(candidate)) {
result.add(candidate);
}
}
return result.toArray(new IContentType[result.size()]);
}
}