0
Declined

better class diagram for chain of responsibility pattern

Amir Mohammad hace 6 años actualizado por anonymous hace 6 años 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: