Java tutorial
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static boolean hasElem(List list) { if (list != null && list.size() > 0) { return true; } return false; } }