I am drawing a Sequence Diagram where the scenario is. 1. an Actor calls :Table::query(query:String)
- :Table::query Calls :Connection::execute(query)
- :Connection::execute <> a new :Row Object
- :Connection::execute calls :Row::fillData(result)
- :Connection::execute returns :Row
- ...... There are More
But I am Stuck in Step 5
I cant Understand how to draw that, :Connection::execute returning the newly Constructed Row itself, in a Standard way.