A D G H I N S T 

A

add(Data) - Method in class ArrayListOfData
This function adds the Data object to this ArrayListOfData.
ARRAY_INCREMENT - Static variable in class ArrayListOfData
This constant specifies how much bigger the array should be made, when the array is full and has to be made larger.
ArrayListOfData - Class in <Unnamed>
This class creates and maintains an Array List of Data Objects.
ArrayListOfData() - Constructor for class ArrayListOfData
This constructor creates an empty ArrayListOfData.
ArrayListOfDataIterator - Class in <Unnamed>
This class represents some data that we want to be able to store.
ArrayListOfDataIterator(Data[], int) - Constructor for class ArrayListOfDataIterator
This constructor

D

Data - Class in <Unnamed>
This class represents some data that we want to be able to store.
Data(int) - Constructor for class Data
This constructor creats a new Data object, initialising its value to the specified argument.

G

getArraySize() - Method in class ArrayListOfData
This function returns the size of the array (so if the array is defined as private Data[] data; then this function returns data.length).
getDataObjectCount() - Method in class ArrayListOfData
This function returns the number of Data objects that are currently in this ArrayList.
getIterator() - Method in class ArrayListOfData
This function returns an Iterator that can be used to access the Data elements from this ArrayListOfData.
getNumber() - Method in class Data
This accessor allows one to look at the value of this datum.

H

hasNext() - Method in class ArrayListOfDataIterator
This function returns a boolean value indicating whether the iterator has more Data elements that it can provide to the caller.
hasNext() - Method in interface Iterator
This function returns a boolean value indicating whether the iterator has more Data elements that it can provide to the caller.

I

INITIAL_ARRAY_SIZE - Static variable in class ArrayListOfData
This constant specifies how big the initial (empty) array should be made in the constructor
Iterator - Interface in <Unnamed>
This interface defines an iterator that will provide access to the members of an ArrayListOfData collection.

N

next() - Method in class ArrayListOfDataIterator
This function returns the next Data element from this iterator.
next() - Method in interface Iterator
This function returns the next Data element from this iterator.

S

setNumber(int) - Method in class Data
This accessor allows one to set the value of this datum.

T

toString() - Method in class Data
toString - does what you think it does...
A D G H I N S T