Draw a Sequence Diagram for the code (PersonList, Person, Tag)
PersonList
Person
Tag
How would you update the diagram if the PersonList class was updated as follows?
class PersonList{ void addPerson(Person p){ add(p); } void add(Person p){ //... } }