| Author |
Is this Adapter Pattern??
|
Smith Jone
Greenhorn
Joined: Nov 15, 2006
Posts: 11
|
|
My Program has Two interface(DBMain,DBClient); AdapterDB is Adapter Class Data(Data Access) is Adaptee Class Because I must implement Sun supplied interface(DBMain), So Data class implement DBMain. Make sence?? I must throws IOException in interface as DBClient-interface which declare IOException.It doesn't exist in Sun supplied interface(DBMain) Because RemoteImplement class must declare RemoteException about Data methods. Is this Object Adapter Pattern for Sloving these problems?? [Edited topic title. Believe me, nothing is "Important" on JavaRanch, unless we say so ] [ November 21, 2006: Message edited by: Smith Jone ] [ November 21, 2006: Message edited by: Barry Gaunt ]
|
SCJP 5.0<br />SCJD(In progressing!)<br />SCWCD(planing)<br />SCBCD(planing)
|
 |
Mark Smyth
Ranch Hand
Joined: Feb 04, 2004
Posts: 288
|
|
|
Yeah the adapter pattern is the best way around the interface problem and the way you are proposing to do it is correct.
|
SCJP<br />SCJD
|
 |
Mihai Radulescu
Ranch Hand
Joined: Sep 18, 2003
Posts: 912
|
|
Hi, in the AdapterDB class you can do : 1.Use DbMain instead of Data 2.If you decide to make the database static you can also make it final. Regards M
|
SCJP, SCJD, SCWCD
|
 |
 |
|
|
subject: Is this Adapter Pattern??
|
|
|