| Author |
How I can make multiple instances of a SEAM component?
|
Tor Rodri
Greenhorn
Joined: May 16, 2010
Posts: 1
|
|
Hi everyone,
I've been having troubles making multiples instances of a Seam Component,
I've tried to do:
... // previous code
MyClass object1 = Component.getInstance("myClass",true);
MyClass object2 = Component.getInstance("myClass",true);
MyClass object3 = Component.getInstance("myClass",true);
... //more code
But I've been readed that the getInstance() method uses the Singleton pattern so object1, object2 and object3 refers to the same instance :S
I need three different instances of that component, could you help me please?
Thanks.
Sorry about my english but I don't speak english.
|
 |
 |
|
|
subject: How I can make multiple instances of a SEAM component?
|
|
|