All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.equinox.common.src.org.eclipse.core.internal.runtime.IAdapterManagerProvider Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2006 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.core.internal.runtime;

/**
 * The callback interface for the elements desiring to lazily supply
 * information to the adapter manager.
 * 
 * @since org.eclipse.core.runtime 3.2
 */
public interface IAdapterManagerProvider {

	/**
	 * Add factories. The method called before the AdapterManager starts
	 * using factories.
	 *  
	 * @param adapterManager the adapter manager that is about to be used
	 * @return true if factories were added; false 
	 * if no factories were added in this method call.
	 */
	public boolean addFactories(AdapterManager adapterManager);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy