blob: 5da75ae03dddf97136a15d397ae2e5cc57af4a16 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.internal.ui.actions;
import java.util.Hashtable;
import java.util.Map;
import org.eclipse.ui.IWorkbenchSite;
import org.eclipse.ui.PlatformUI;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.internal.corext.fix.CleanUpConstants;
import org.eclipse.jdt.ui.cleanup.CleanUpOptions;
import org.eclipse.jdt.ui.cleanup.ICleanUp;
import org.eclipse.jdt.internal.ui.IJavaHelpContextIds;
import org.eclipse.jdt.internal.ui.fix.ImportsCleanUp;
import org.eclipse.jdt.internal.ui.javaeditor.JavaEditor;
public class MultiOrganizeImportAction extends CleanUpAction {
public MultiOrganizeImportAction(IWorkbenchSite site) {
super(site);
setText(ActionMessages.OrganizeImportsAction_label);
setToolTipText(ActionMessages.OrganizeImportsAction_tooltip);
setDescription(ActionMessages.OrganizeImportsAction_description);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.ORGANIZE_IMPORTS_ACTION);
}
public MultiOrganizeImportAction(JavaEditor editor) {
super(editor);
setText(ActionMessages.OrganizeImportsAction_label);
setToolTipText(ActionMessages.OrganizeImportsAction_tooltip);
setDescription(ActionMessages.OrganizeImportsAction_description);
PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IJavaHelpContextIds.ORGANIZE_IMPORTS_ACTION);
}
@Override
protected ICleanUp[] getCleanUps(ICompilationUnit[] units) {
Map<String, String> settings= new Hashtable<String, String>();
settings.put(CleanUpConstants.ORGANIZE_IMPORTS, CleanUpOptions.TRUE);
ImportsCleanUp importsCleanUp= new ImportsCleanUp(settings);
return new ICleanUp[] {
importsCleanUp
};
}
@Override
protected String getActionName() {
return ActionMessages.OrganizeImportsAction_error_title;
}
}