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