mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
13 lines
218 B
Java
13 lines
218 B
Java
final class MyModule {
|
|
@Target({FIELD,PARAMETER,METHOD})
|
|
@Retention(RUNTIME)
|
|
public static @interface Dependency { }
|
|
}
|
|
|
|
class MyAnotherModule {}
|
|
|
|
final class SomeService {
|
|
|
|
SomeService(@My<caret>.Inner) {
|
|
}
|
|
} |