
Obtaining a list of objects:
============================

The following methods all return a list of objects:

    Connection.executeQuery(query)
    Connection.loadObjects(classname,fieldname,value)
    Connection.loadAll(classname)

This function creates a new list that can contain instances of a specific
class, but is initially empty.

    Connection.newEmptyList(classname)


List Operations
===============

A list can have its contents counted, you can add a new object to the end of
a list, and you can remove an object from an arbitrary position in a list.

