blob: 289285f919d470491cde5bd3a3cc3aa038a25ab8 [file] [log] [blame]
package org.eclipse.e4.tools.model.spy;
import org.eclipse.core.runtime.IExtension;
import org.eclipse.core.runtime.IExtensionRegistry;
import org.eclipse.core.runtime.RegistryFactory;
import org.eclipse.e4.tools.emf.ui.common.IExtensionLookup;
public class RuntimeExtensionLookup implements IExtensionLookup {
@Override
public IExtension[] findExtensions(String extensionPointId, boolean liveModel) {
IExtensionRegistry registry = RegistryFactory.getRegistry();
return registry.getExtensionPoint(extensionPointId).getExtensions();
}
}