NodeList
Description:
The NodeList class is a replacement for the dynamic lists normally found in the J2SE library (such as ArrayList? and LinkedList?). The SPOTs do not use J2SE, they use J2ME; and therefore they do not have access to a variety of useful classes. As a solution, I wrote this simple version of a linked list for the SPOTs. Nothing big, but handy in the right place. Remember that this a linked list, so that accessing members further back takes much longer than in an array (in case you're dealing with a massive list).
Click here for source code.
Special Requirements:
* None
Uses:
* None
