blob: 90dc485653235fbdb1c48760d59b8184d2451e7e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 BEA Systems, Inc.
*
* 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:
* wharley@bea.com - initial API and implementation
*
*******************************************************************************/
package org.aspectj.org.eclipse.jdt.internal.compiler.apt.dispatch;
import java.util.List;
import javax.annotation.processing.Processor;
/**
* Implementors know how to discover annotation processors, and maintain a list of processors that
* have been discovered and initialized so far.
*/
public interface IProcessorProvider {
/**
* Return the next processor that can be discovered, according to the order and discovery rules
* of the provider (see, for instance, {@link Processor}.
* @return a ProcessorInfo wrapping an initialized Processor, or <code>null</code> if there are
* no more processors to be discovered.
*/
ProcessorInfo discoverNextProcessor();
/**
* @return the list of all processors that have been discovered so far. This list will grow when
* {@link #discoverNextProcessor()} is called.
*/
List<ProcessorInfo> getDiscoveredProcessors();
/**
* Called when a processor throws an exception. This may abort compilation, throw an
* unchecked exception, etc; the caller should not assume that this method will return.
*
* @param p the processor, if known, or null if not.
* @param e
*/
void reportProcessorException(Processor p, Exception e);
}