hi
I want learn about this thing I see in the following example
What I don't understand is the use of the classes as though they were objects to pass to the array.
I can not even name it so could not find info about it in google.Code://All we do here is assemble the list of WizardPage subclasses we
//want to show:
Class[] pages = new Class[] {
AnimalTypePage.class,
LocomotionPage.class,
OtherAttributesPage.class,
FinalPage.class
};
//Use the utility method to compose a Wizard
Wizard wizard = WizardPage.createWizard(pages, WizardResultProducer.NO_OP);
Thank you.

