blob: e3218efb0a0e7d596509955f6d7736bc3eadbc1c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2017 Sonatype, Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.sdk;
import org.eclipse.core.runtime.IExecutableExtensionFactory;
import org.eclipse.core.runtime.Platform;
import org.eclipse.equinox.p2.ui.RevertProfilePage;
import org.osgi.framework.Bundle;
public class RevertProfilePageExtensionFactory implements IExecutableExtensionFactory {
@Override
public Object create() {
Bundle bundle = Platform.getBundle("org.eclipse.compare"); //$NON-NLS-1$
if (bundle == null) {
return new RevertProfilePage();
}
return new RevertProfilePageWithCompare();
}
}