Understanding Bridge Pattern using .NET
page 9 of 13
by David Simmonds
Feedback
Average Rating: This article has not yet been rated.
Views (Total / Last 10 Days): 46936/ 59

Interface issues

There are two interfaces in the pattern.

The abstraction is a governing interface which tends to be a must-inherit or abstract-class.  It ensures that refined abstractions hold a reference to the concrete implementation.  It also ensures that they implement the abstract operation.

The implementation is an interacting interface which ensures that we can swap implementations at will without causing any hiccups.

Namespace/Scope/Accessor issues

Coding a public property into the abstraction which sets the implementer being used allows you to change implementers on the fly.

Listing 4

Public MustInherit Class Evaluation
  …
Public Property RatingRenderDevice() As Implementors.RatingRenderer
  …
  Set(ByVal Value As Implementors.RatingRenderer)
   RenderingDevice = Value
  End Set
End Property

View Entire Article

User Comments

No comments posted yet.

Product Spotlight
Product Spotlight 





Community Advice: ASP | SQL | XML | Regular Expressions | Windows


©Copyright 1998-2024 ASPAlliance.com  |  Page Processed at 2024-04-25 6:57:14 PM  AspAlliance Recent Articles RSS Feed
About ASPAlliance | Newsgroups | Advertise | Authors | Email Lists | Feedback | Link To Us | Privacy | Search