Re: How to package bridge pattern classes?
From: Daniel T. (postmaster_at_eathlink.net)
Date: 08/07/04
- Previous message: H. S. Lahman: "Re: What doesn't lend itself to OO?"
- In reply to: Ken: "How to package bridge pattern classes?"
- Next in thread: kk_oop
: "Re: How to package bridge pattern classes?" - Reply: kk_oop
: "Re: How to package bridge pattern classes?" - Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Sat, 07 Aug 2004 03:50:24 GMT
kk_oop@yahoo.com (Ken) wrote:
> Hi. I'm implementing the bridge pattern in Java. I'm wondering if I
> should put each side of the bridge in its own package, or if I should
> put all the bridge classes in one package. I'm leaning toward the
> former, so each side of the bridge will have its protected methods
> encapsulated from the other side.
>
> Any thoughts?
I would put the Abstraction and Implementor interfaces in the same
package and each refinedAbstraction and ConcreteImplementor in their own
package.
- Previous message: H. S. Lahman: "Re: What doesn't lend itself to OO?"
- In reply to: Ken: "How to package bridge pattern classes?"
- Next in thread: kk_oop
: "Re: How to package bridge pattern classes?" - Reply: kk_oop
: "Re: How to package bridge pattern classes?" - Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|