mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
provide accessibility fixes for problems inside annotations (IDEA-148864)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
// "Make 'Inner' protected" "true"
|
||||
@MyAnnotation(Outer.Inner.class)
|
||||
public class Outer {
|
||||
|
||||
protected static class Inner {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@interface MyAnnotation {
|
||||
Class<?> value();
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
// "Make 'Inner' protected" "true"
|
||||
@MyAnnotation(Outer.I<caret>nner.class)
|
||||
public class Outer {
|
||||
|
||||
private static class Inner {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@interface MyAnnotation {
|
||||
Class<?> value();
|
||||
}
|
||||
Reference in New Issue
Block a user