1 /******************************************************************************* 2 * Copyright (c) 2005 IBM Corporation and others. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the Eclipse Public License v1.0 5 * which accompanies this distribution, and is available at 6 * http://www.eclipse.org/legal/epl-v10.html 7 * 8 * Contributors: 9 * IBM Corporation - initial API and implementation 10 *******************************************************************************/ 11 package org.eclipse.core.internal.runtime; 12 13 import org.eclipse.core.runtime.IAdapterFactory; 14 15 /** 16 * An internal interface that exposes portion of AdapterFactoryProxy functionality 17 * without the need to import the class itself. 18 */ 19 public interface IAdapterFactoryExt { 20 21 /** 22 * Loads the real adapter factory, but only if its associated plug-in is 23 * already loaded. Returns the real factory if it was successfully loaded. 24 * @param force if <code>true</code> the plugin providing the 25 * factory will be loaded if necessary, otherwise no plugin activations 26 * will occur. 27 */ 28 public IAdapterFactory loadFactory(boolean force); 29 30 public String[] getAdapterNames(); 31 } 32