blob: 32144309c91ef9872c30a310d063892c914405dc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 BEA Systems, Inc.
* 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:
* wharley@bea.com - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.internal.apt.pluggable.core;
import org.eclipse.jdt.core.compiler.CompilationParticipant;
/**
* Compilation participant for Java 6 annotation processing. Java 6 annotation
* processors are dispatched via the org.eclipse.jdt.core.annotationProcessorManager
* extension point, but this compilation participant is still required in order
* to register a managed problem marker.
* @since 3.3
*/
public class Apt6CompilationParticipant extends CompilationParticipant {
public Apt6CompilationParticipant() {
}
}