show/hide this revision's text 2 deleted 16 characters in body

Two things:

  • In your example you need two methods. The perfom and the setInterface. With a visitor pattern you would only need one method, the perfom, usually called accept.
  • If you need more than one 'performer', you will have to set the performer -via the setInterface method- for eachtime you use it. This makes it impossible to make your class immutable.
show/hide this revision's text 1

Two things:

  • In your example you need two methods. The perfom and the setInterface. With a visitor pattern you would only need one method, the perfom, usually called accept.
  • If you need more than one 'performer', you will have to set the performer -via the setInterface method- for each time you use it. This makes it impossible to make your class immutable.