Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. thepsion5

    Calling Inherited Method

    Hi guys, I have a interface that implements/extends the generic collections interface, like so: public class RawTrafficDataBuffer : IRawDataBuffer The implementing class implements all the required methods the way I believe is proper for C# (I say this because the function calls were generated...
  2. thepsion5

    Facilitating weak coupling using the Factory Method

    The CrawlerPage objects are primarily instantiated using the CrawlerStrategy since it's purpose is to facilitate the actual crawling of the website. The CrawlerStrategy crawls a page and "deposits" it in the form of a CrawlerPage into an instance of the CrawlerPagesSorter class, which maintains...
  3. thepsion5

    Facilitating weak coupling using the Factory Method

    Thanks Bob, your response was actually very helpful. Ok, I think I have a better understanding of what I'm actually trying to do now. I believe that I mislabeled my interesting using the Builder pattern as the Factory pattern, so now I have a firmer grip on what I should be done, I still have a...
  4. thepsion5

    Facilitating weak coupling using the Factory Method

    Hi guys, I'm designing several classes that interact with each other, and I'm doing my best to make sure that these classes are weakly couples wherever possible. This has led me to implement the following design: I'm constructing a web crawler that consists of several main classes/interfaces...

Part and Inventory Search

Back
Top