mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
create annotation method from usage (IDEA-75910 )
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
@Attr(test= "")
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
String test();
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
@Attr(test= {""})
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
String[] test();
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= "")
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Create Method 'test'" "true"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {""})
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Create Method 'test'" "false"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {"", 1})
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
// "Create Method 'test'" "false"
|
||||
public class Test {
|
||||
@Attr(te<caret>st= {new String[]{""}})
|
||||
public Test() {
|
||||
}
|
||||
}
|
||||
|
||||
@interface Attr {
|
||||
}
|
||||
Reference in New Issue
Block a user