blob: 345dbad9e71fad27ca797ef013da37b8b94503e5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ltk.internal.ui.refactoring;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.jface.resource.ImageRegistry;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.eclipse.ltk.ui.refactoring.IRefactoringUIStatusCodes;
public class RefactoringUIPlugin extends AbstractUIPlugin {
private static RefactoringUIPlugin fgDefault;
public RefactoringUIPlugin() {
fgDefault= this;
}
public static RefactoringUIPlugin getDefault() {
return fgDefault;
}
public static String getPluginId() {
return "org.eclipse.ltk.ui.refactoring"; //$NON-NLS-1$
}
public static void log(IStatus status) {
getDefault().getLog().log(status);
}
public static void log(Throwable t) {
IStatus status= new Status(
IStatus.ERROR, getPluginId(),
IRefactoringUIStatusCodes.INTERNAL_ERROR,
RefactoringUIMessages.getString("RefactoringUIPlugin.internal_error"), //$NON-NLS-1$
t);
ResourcesPlugin.getPlugin().getLog().log(status);
}
public static void logErrorMessage(String message) {
log(new Status(IStatus.ERROR, getPluginId(), IRefactoringUIStatusCodes.INTERNAL_ERROR, message, null));
}
public static void logRemovedListener(Throwable t) {
IStatus status= new Status(
IStatus.ERROR, getPluginId(),
IRefactoringUIStatusCodes.INTERNAL_ERROR,
RefactoringUIMessages.getString("RefactoringUIPlugin.listener_removed"), //$NON-NLS-1$
t);
ResourcesPlugin.getPlugin().getLog().log(status);
}
public static IEditorPart[] getInstanciatedEditors() {
List result= new ArrayList(0);
IWorkbench workbench= getDefault().getWorkbench();
IWorkbenchWindow[] windows= workbench.getWorkbenchWindows();
for (int windowIndex= 0; windowIndex < windows.length; windowIndex++) {
IWorkbenchPage[] pages= windows[windowIndex].getPages();
for (int pageIndex= 0; pageIndex < pages.length; pageIndex++) {
IEditorReference[] references= pages[pageIndex].getEditorReferences();
for (int refIndex= 0; refIndex < references.length; refIndex++) {
IEditorPart editor= references[refIndex].getEditor(false);
if (editor != null)
result.add(editor);
}
}
}
return (IEditorPart[])result.toArray(new IEditorPart[result.size()]);
}
protected ImageRegistry createImageRegistry() {
return RefactoringPluginImages.getImageRegistry();
}
}