mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
[java] create annotation value() method from usage (IDEA-350345)
GitOrigin-RevId: 3596e1f35ce3f603789c69f90b28aacaf448866a
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1fd9cf454d
commit
9414c123b8
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "true-preview"
|
||||
// "Create @interface method 'test()'" "true-preview"
|
||||
public class Test {
|
||||
@Attr(test= "")
|
||||
public Test() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "true"
|
||||
// "Create @interface method 'test()'" "true"
|
||||
public class Test {
|
||||
@Attr(test= {""})
|
||||
public Test() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "true-preview"
|
||||
// "Create @interface method 'test()'" "true-preview"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= "")
|
||||
public Test() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "true"
|
||||
// "Create @interface method 'test()'" "true"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {""})
|
||||
public Test() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "false"
|
||||
// "Create @interface method 'test()'" "false"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {"", 1})
|
||||
public Test() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create method 'test'" "false"
|
||||
// "Create @interface method 'test()'" "false"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {new String[]{""}})
|
||||
public Test() {
|
||||
|
||||
@@ -1 +1 @@
|
||||
String test()
|
||||
String test();
|
||||
Reference in New Issue
Block a user