0
Declined

better class diagram for chain of responsibility pattern

Amir Mohammad 6 years ago updated by anonymous 6 years ago 3

hi everybody

i think the following class diagram would be a better representation of Chain of Responsibility pattern.Image 89

Under review

Hi! Why do you think it's better?

Hi


You should replace:


    nextHandler.handle();

by


    if (isDefined(nextHandler))
        nextHandler.handle();
Declined

I'm closing this for now, because it seems that current illustration does contain simple "isDefined" and "canHandle" checks: