Returns a simple forward iterator to the caller which
can be used to retrieve the contents of the arraylist
like this:
ArrayListInt.ListIterator it = alist.listIterator();
while (it.hasNext()) {
int l = li.next ();
System.out.println (" : " + l);
}
Additionally the list iterator is capable of backwards iteration
using the methods @see previous and @see hasPrevious
Returns a simple forward iterator with user-specified
starting position which
can be used to retrieve the contents of the arraylist
in reverse order like this:
ArrayListInt.ListIterator it = alist.listIterator(alist.size());
while (it.hasPrevious()) {
int l = li.previous ();
System.out.println (" : " + l);
}
Additionally the list iterator is capable of backwards iteration
using the methods @see previous and @see hasPrevious
Loads all favorite views stored with this connection and returns the
root of the favorite view tree representing those views or null, if no
favorite views were stored in this connection.
The method retrieves the AdvancedSystem database of the connection (or
creates it, if it is not yet in the connection) and also gets the
bookmark-cube from the AdvancedSystem database (or creates it, if it had
not been present (for this user)).