blob: 1fefe4de808a691fc6e4db5593d2e39367f45012 [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 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.ltk.internal.ui.refactoring;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.ltk.ui.refactoring.IChangePreviewViewer;
public class ChangePreviewViewerDescriptor extends AbstractDescriptor {
private static final String EXT_ID= "changePreviewViewers"; //$NON-NLS-1$
private static DescriptorManager fgDescriptions= new DescriptorManager(EXT_ID, "change") { //$NON-NLS-1$
protected AbstractDescriptor createDescriptor(IConfigurationElement element) {
return new ChangePreviewViewerDescriptor(element);
}
};
public static ChangePreviewViewerDescriptor get(Object element) throws CoreException {
return (ChangePreviewViewerDescriptor)fgDescriptions.getDescriptor(element);
}
public ChangePreviewViewerDescriptor(IConfigurationElement element) {
super(element);
}
public IChangePreviewViewer createViewer() throws CoreException {
return (IChangePreviewViewer)fConfigurationElement.createExecutableExtension(CLASS);
}
}