mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
22 lines
366 B
Java
22 lines
366 B
Java
public class Test {
|
|
private String myStr;
|
|
|
|
public String getMyStr() {
|
|
return myStr;
|
|
}
|
|
|
|
void foo() {
|
|
new Runnable(){
|
|
@Override
|
|
public void run() {
|
|
System.out.println(<selection>myStr</selection>);
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
class X {
|
|
public void n() {
|
|
new Test().foo();
|
|
}
|
|
} |