| Author |
DAOFactory.getDbManager
|
Himai Minh
Ranch Hand
Joined: Jul 29, 2012
Posts: 312
|
|
In Roberto buddy's DataTest class, he wrote a DAOFactory class and a getDbManager method to load the database file.
Can I load the db file in my own way?
In my instruction.html, I don't see any " must " requirement that we must have a DAOFactory class.
In my instruction.html, I don't see any "must" that says submitting any test class. Does it mean I don't need to submit my own test class?
|
 |
Roel De Nijs
Bartender
Joined: Jul 19, 2004
Posts: 4389
|
|
Easy & short answers:
You can load the db file as you wantYou don't have to provide/submit any test classes
|
SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
|
 |
Roberto Perillo
Bartender
Joined: Dec 28, 2007
Posts: 2216
|
|
|
You know, if I had to do everything again today, I wouldn't have a DAOFactory. The Data class wouldn't be a singleton either. I'd instantiate the Data object when the application is started, instantiate the business object, passing the Data object as a parameter in the business class' constructor, and instantiate the window, passing the business object in the window's constructor. Although the Data object wouldn't be a singleton, it would be as if it was a singleton, since it would be unique in the application.
|
Cheers, Bob "John Lennon" Perillo
SCJP, SCWCD, SCJD, SCBCD - Daileon: A Tool for Enabling Domain Annotations
|
 |
 |
|
|
subject: DAOFactory.getDbManager
|
|
|