mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
- make it create template for both getter and setter; - make it work with type parameter guesser; - add tests!
11 lines
135 B
Java
11 lines
135 B
Java
// "Create property" "false"
|
|
class JC {
|
|
void setFoo(boolean a) {}
|
|
}
|
|
|
|
class Main {
|
|
void usage(JC jc) {
|
|
jc.<caret>isFoo();
|
|
}
|
|
}
|