mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-08 06:10:59 +07:00
11 lines
186 B
Java
11 lines
186 B
Java
final class MyModule {
|
|
@Target({FIELD,PARAMETER,METHOD})
|
|
@Retention(RUNTIME)
|
|
public static @interface Dependency { }
|
|
}
|
|
|
|
final class SomeService {
|
|
|
|
SomeService(@My<caret>) {
|
|
}
|
|
} |