Sequence Diagram return a new constructed Object

Posted by user256007 on Stack Overflow See other posts from Stack Overflow or by user256007
Published on 2010-06-06T18:25:56Z Indexed on 2010/06/06 18:32 UTC
Read the original article Hit count: 288

I am drawing a Sequence Diagram where the scenario is. 1. an Actor calls :Table::query(query:String)

  1. :Table::query Calls :Connection::execute(query)
  2. :Connection::execute <> a new :Row Object
  3. :Connection::execute calls :Row::fillData(result)
  4. :Connection::execute returns :Row
  5. ...... 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.

© Stack Overflow or respective owner

Related posts about object-oriented-design

Related posts about uml