mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
326 B
Java
15 lines
326 B
Java
public class Test {
|
|
|
|
void test() {
|
|
<selection>if (isGood() && isApplicable()) {
|
|
System.out.println();
|
|
}</selection>
|
|
if (!isGood() && isApplicable()) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
|
|
boolean isGood() { return true; }
|
|
|
|
boolean isApplicable() { return true; }
|
|
} |