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