blob: 26ea41259b7f9e445835430373e04763056f1bea [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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.jdt.internal.corext.refactoring.participants;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.resources.IProject;
public class RefactoringProcessors {
public static String[] getNatures(IProject[] projects) throws CoreException {
Set<String> result= new HashSet<>();
for (IProject project : projects) {
String[] pns= project.getDescription().getNatureIds();
Collections.addAll(result, pns);
}
return result.toArray(new String[result.size()]);
}
private RefactoringProcessors() {
}
}