Java tutorial
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static boolean isListEmpty(List list) { return list == null || list.isEmpty(); } }