mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 07:20:55 +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'_.
12 lines
202 B
Java
12 lines
202 B
Java
// "Create read-only property 'field' in 'Test'" "true"
|
|
public class Test {
|
|
Integer field;
|
|
public foo() {
|
|
getField();
|
|
}
|
|
|
|
public Object getField() {
|
|
return field;
|
|
}
|
|
}
|