Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 812e6e67a4c66fe81dcfd2c7259f0f658c57fca8 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
/*******************************************************************************
 * Copyright (c) 2017 IBM Corporation.
 * 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 targets.model9;

import org.eclipse.jdt.compiler.apt.tests.annotations.Type;
import org.eclipse.jdt.compiler.apt.tests.annotations.Type1;
import org.eclipse.jdt.compiler.apt.tests.annotations.Type$1;
import org.eclipse.jdt.compiler.apt.tests.annotations.Type.One;

@Type("c")
public class X extends @Type("s") Object implements @Type("i1") I, @Type("i2") J {
	@Type("f") String _field = null;
	@Type("f1") X _field1 = null;
	@Type("f1") X _field11 = null;
	@Type$1 @One String _field2 = null;
	X _field3 = null;
	int _i = 10;
	public void noAnnotationHere() {
	}
	@Deprecated @Type("m") String foo() {
		return null;
	}
	void bar(@Type("p1") String p1, @Type("p2") String p2) {}
	public void bar2(@Type("receiver") X this) {}
	// Static methods and top level constructors do not have receivers
	public static void main(String[] args) {}
	@Type("constr1") public X(){}
	@Type1("constr2") public X(int i){}
}

interface I {}
interface J {}

Back to the top