blob: aa87d081afb8ef908f1fb1614bd8a7cc8566b701 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 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.model;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.jface.viewers.Viewer;
import org.eclipse.compare.CompareConfiguration;
import org.eclipse.compare.IViewerCreator;
/**
* Compare viewer creator for refactoring descriptor compare viewers.
*
* @since 3.2
*/
public final class RefactoringDescriptorCompareViewerCreator implements IViewerCreator {
/**
* {@inheritDoc}
*/
public Viewer createViewer(final Composite parent, final CompareConfiguration configuration) {
return new RefactoringDescriptorCompareViewer(parent, configuration, SWT.NONE);
}
}