Tagged Questions

2
votes
1answer
46 views

Patterns used in WPF

I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it. At the same time I am rereading …
0
votes
1answer
19 views

wpf events and chain of responsibility pattern

do routed events from wpf have something in common with the chain of responsibility pattern ? i googled for this and i don't see anyone talking about this :S, although i though th …
2
votes
3answers
148 views

C# -Pipeline Style event model

In ASP.NET Web Apps , events are fired in particluar order : for simplicity Load => validation =>postback =>rendering Suppose I want to develop such pipeline -styled event …
0
votes
4answers
160 views

Is this possible in PHP?

Consider the following PHP snippet: <?php class Is { function __get($key) { $class = __CLASS__ . '_' . $key; if (class_exists($class) === true) { …
6
votes
6answers
358 views

Why would I ever use a Chain of Responsibility over a Decorator?

I'm just reading up on the Chain of Responsibility pattern and I'm having trouble imagining a scenario when I would prefer its use over that of decorator. What do you think? Does …
1
vote
3answers
82 views

Design Pattern to allow code to be injected at certain points

I am trying to allow developers to extend my code at certain points of execution. My specific example is a database transaction wrapper. The wrapper takes care of many details th …
1
vote
2answers
133 views

How do I declare a chain of responsibility using decorators in Ninject?

I'd like to declare a chain of responsibility using decorators in Ninject. Has anyone done that before? Thanks.
2
votes
3answers
229 views

What are the advantages of chain-of-responsibility vs. lists of classes?

Recently, I was discussing with another programmer the best way to refactor a huge(1000 lines) method full of "if" statements. The code is written in Java, but I guess this issue …
0
votes
2answers
64 views

How would you test something that filters complex objects

I have a persistent object with 7 pertinent fields. The fields can hold the number of values listed here: Field # of Possible Values 1 5 2 20 3 2 4 …
11
votes
6answers
820 views

Replace giant switch statement with what?

I have a code that parses some template files and when it finds a placeholder, it replaces it with a value. Something like: <html> <head> <title>%title%</ …
10
votes
2answers
268 views

What are the known “gotchas” with regards to the Chain of Responsibilty pattern?

I have been finding myself using the Chain of Responsibility pattern often (3 times is often for me) in my current project and I'm wondering if I have become a little over-enthusia …
2
votes
8answers
157 views

Application design for processing data prior to database

I have a large collection of data in an excel file (and csv files). The data needs to be placed into a database (mysql). However, before it goes into the database it needs to be pr …