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!
9 lines
114 B
Java
9 lines
114 B
Java
// "Create property" "false"
|
|
interface I {}
|
|
|
|
class Main {
|
|
void usage(I i) {
|
|
i.<caret>setFoo("hello");
|
|
}
|
|
}
|