mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 08:19:05 +07:00
10 lines
215 B
Java
10 lines
215 B
Java
package annotated;
|
|
|
|
import annotations.*;
|
|
|
|
@annotations.AnnotationType
|
|
public class AnnotatedClass {
|
|
@AnnotationType("<") public void correctMethod() {}
|
|
@wrongpkg.AnnotationType public void wrongMethod() {}
|
|
}
|