mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
- _Create Getter_ -> _Create read-only property 'foo' in 'Bar'_ - _Create Setter_ -> _Create write-only property 'foo' in 'Bar'_ Action names are now consistent with _Create property 'foo' in 'Bar'_.
8 lines
149 B
Java
8 lines
149 B
Java
// "Create read-only property 'field' in 'Test'" "true"
|
|
public class Test {
|
|
Integer field;
|
|
public foo() {
|
|
get<caret>Field();
|
|
}
|
|
}
|