blob: de86a26ad0d7e8e39498ff2a665c8521b9df1c99 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 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.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);
}