UML for delegation template

I would like to model a delegation pattern (for objective-C) in UML. What is the right presentation for you?

For instance:

There is a delegate in my BaseXMLParser class that matches the ParserDelegate interface. Methods in ParserDelegate will be implemented in the user interface class

ps: sorry for my english

Delegation pattern

+3
source share
1 answer

<<ParserDelegate>> <<Interface>>, delegate ParserDelegate. , (ParserDelegate) (UI). BaseXMLParser ParserDelegate , , .

+1

All Articles