All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bndtools.team.TeamUtils Maven / Gradle / Ivy

The newest version!
package bndtools.team;

import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.team.core.RepositoryProvider;

public class TeamUtils {
	/**
	 * Get the id of the repository provider that is managing the project
	 *
	 * @param project the project
	 * @return null when project is null or when the project is not managed by a
	 *         version control plugin
	 */
	static public String getProjectRepositoryProviderId(IJavaProject project) {
		if (project == null) {
			return null;
		}

		RepositoryProvider repositoryProvider = RepositoryProvider.getProvider(project.getProject());
		if (repositoryProvider != null) {
			return repositoryProvider.getID();
		}

		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy