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

bndtools.release.ReleaseWorkspaceHandler Maven / Gradle / Ivy

The newest version!
package bndtools.release;

import org.eclipse.core.commands.AbstractHandler;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.ui.PlatformUI;

import bndtools.release.nl.Messages;

public class ReleaseWorkspaceHandler extends AbstractHandler {

	@Override
	public Object execute(ExecutionEvent event) throws ExecutionException {
		try {

			if (ReleaseHelper.getReleaseRepositories().length == 0) {
				Activator.message(Messages.noReleaseRepos);
				return null;
			}

			if (!PlatformUI.getWorkbench()
				.saveAllEditors(true)) {
				return null;
			}

			WorkspaceAnalyserJob job = new WorkspaceAnalyserJob(null);
			job.setRule(ResourcesPlugin.getWorkspace()
				.getRoot());
			job.schedule();

		} catch (Exception e) {
			throw new ExecutionException(e.getMessage(), e);
		}

		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy