blob: d3378ce0fb134b97d6e6939a35baf11944b6c75f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 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.e4.core.services.contributions;
import org.eclipse.e4.core.contexts.IEclipseContext;
import org.osgi.framework.Bundle;
// TBD this became an utility method to create object from a bundle.
// Change it into an utility method somewhere.
public interface IContributionFactory {
Object create(String uriString, IEclipseContext context);
Object create(String uriString, IEclipseContext context, IEclipseContext staticContext);
Bundle getBundle(String uriString);
}