Package java.util
Class ArrayList
Description:
Tests if this list has no elements.
Example
ArrayList bList = new ArrayList(5);
if (bList.isEmpty())
{
Logger.log("This ArrayList is empty!");
}
The bList.isEmpty() method returns true if the list is empty.