Basicly it like this. I have a class full of methods and variables (like any other normal class) and I wanted to create a dynamic array of these instances. but iv'e come accross a floor in my plan where once I load the object of the class into the vector I can not access anything inside the class.

Heres a more Codey kind of example...

aClass obj = aClass();
 
Vector x = new Vector();
x.add(obj);
 
//How can I accsess a method\function from inside, sorta like this
 
x.get(0).someFunction();
//where someFunction is a function defined inside aClass

Thanx in advance, Matty