mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
14 lines
160 B
Java
14 lines
160 B
Java
// "Encapsulate field" "false"
|
|
|
|
class A {
|
|
private boolean m_bool;
|
|
}
|
|
|
|
public class B {
|
|
void method() {
|
|
A a = new A();
|
|
|
|
a.m_bo<caret>ol = true;
|
|
}
|
|
}
|