/**
* Tests if this list has no elements.
*
* @return <tt>true </tt> if this list has no elements;
* <tt>false </tt> otherwise.
*/
public boolean isEmpty() {
return size == 0;
}
[/Quote]
/**
* Tests if this list has no elements.
*
* @return <tt>true</tt> if this list has no elements;
* <tt>false</tt> otherwise.
*/
public boolean isEmpty() {
return size == 0;
}