mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
14 lines
336 B
Java
14 lines
336 B
Java
import java.util.*;
|
|
|
|
public class Introduce {
|
|
private static List _list = new ArrayList();
|
|
|
|
public static void main(String[] args) {
|
|
final boolean empty = _list.isEmpty();
|
|
final boolean invisible = (!empty);
|
|
final boolean visible = empty;
|
|
|
|
if("".equals(_list.get(0)) || empty) {
|
|
}
|
|
}
|
|
} |