Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 425990ec10ae96205bba1bbf5bf18c75761ec8f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
 * Copyright (c) 2010 Walter Harley and others
 *
 * 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:
 *    eclipse@cafewalter.com - initial API and implementation
 *******************************************************************************/
package org.eclipse.jdt.apt.pluggable.tests.annotations;

/**
 * Marker interface to trigger the TestFinalRoundProc, which does nothing
 * normally but on the final round of processing generates a new Java type
 * that is annotated with this annotation.
 * <p>
 * See <a href="http://bugs.eclipse.org/329156">Bug 329156</a> and
 * <a href="http://bugs.sun.com/view_bug.do?bug_id=6634138">the
 * corresponding bug in javac</a>, which Sun fixed.
 * @since 3.7
 */
public @interface FinalRoundTestTrigger {
}

Back to the top