list of My beans !
Hi ,
I need to create list of mybeans..
i wanna create like this
MyBean[] mb ;
for (int i=0;i<5;i++){
mb = new MyBean();
mb.setData ("test");
}
for (int j=0; j<5;j++){
mb.getData();
}
Is it possible to do like this..If so , can u give me a solution...
thanks in advance,
bregoty

