blob: cad8f35b9842ead33b54fab76ad359b791f19440 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.ui;
import org.eclipse.equinox.p2.core.IProvisioningAgent;
import org.eclipse.equinox.p2.core.UIServices;
import org.eclipse.equinox.p2.core.spi.IAgentServiceFactory;
/**
* Component that provides a factory that can create and initialize
* {@link UIServices} instances.
*/
public class ServiceUIComponent implements IAgentServiceFactory {
@Override
public Object createService(IProvisioningAgent agent) {
return new ValidationDialogServiceUI(agent);
}
}