sequence-diagram

Is there any tool like MaintainJ for IntelliJ

Hi, I just tested MaintainJ Eclipse plugin and I find it very useful for reverse engineering sequence diagrams. However, I use IntelliJ in my projects so I was just wondering either a similar plugin exists for my favourite IDE. Thanks ! ...

Sequence diagram with javascript to ajax to php calls

I'm needing to document some functionality on a page that has a jQuery watching for a button click. On the button click the script pulls info from two fields and makes a ajax call to a php script passing these values to the php script. ...

What is more correct class name or object name in UML sequence diagram?

I was just wondering if it is more correctly to as a label of objects in UML sequence diagram instead of object name (which is irrelevant in my opinion and less informative than class name) provide class name. Another thing, while returning information instead of listing all objects names would it be a better solution to just write colle...

Is there a free (as in beer) Flow chart generator for COBOL Code?

Hi I've never read COBOL in my life and have been tasked with rewriting the old COBOL code in a new language. Are there any free or free-to-try software packages out there that will generate a flow chart for a COBOL program? I've looked at "Visustin" and "Code Visual to Flowchart" Visustin blanks out part of the code and does random r...

Visual Studio UML Sequence Diagram

I was wondering if there was a Sequence Diagram generator for C#? Im using Visual Studio 2008 Professional. If not is there a quick and simple software? Im finding Enterprise Architect and Visio a bit too cryptic for a beginner. I have found the Class Diagram feature on Visual Studio, which s very useful and am hoping for a equally u...

Want tool to obtain linear temporal logic spec from UML 2.0 sequence diagram

i am working on checking model consistency of software. to do this i need to write linear temporal logic for UML 2.0 sequence diagram. if any body have any other tool for the same please response as soon as possible. I will be very obliged to you. i have found charmy tool have plugin for the same. Does anybody have source code for charmy...

Sequence diagram to state diagram

Can we make state diagram from sequence diagram....Is there any tool for the same... plz reply ASAP thnx in advance........... ...

What exactly does the return line (dotted line) represents in a sequence diagram??

IN which kind of steps should be used the return line <- - - - - - thanks This is the diagram that I would like to fix. I think the send email lines are wrong and Im nto sure if I shoudl have return lines after login ...

Sequence diagram example

The use case to model is the register of a new appointment. The user logins in the system as a patient (role). To make an appointment shoudl enter medical specialty and date. System shoudl look for the doctors availables for that specialty on that date. From the results patient should choose one and then system save the appointment. At ...

Describing an If-else structure in a UML system sequence diagram

Is it possible to describe an if-else structure in a system sequence diagram? If yes, how is this done? ...

Eclipse plugin or a Open source tool to reverse engineer java code for sequence diagram

I am looking out for a eclipse plugin or an open source tool to reverse engineer the sequence diagrams. I tried using Alto UML, but it just gives out sequence diagram of the class chose. I would like to have a sequence diagram of the whole call stack with methods, input arguments and output arugments as well. Could you please let me kno...

Difference between types of messages in sequence diagrams.

What is the difference between? Self message Recursive message Re-entrant message thanks ...

Should I draw 2 sequence diagram if I have one use case with different behaviour according to the roles of user?

If a use case is performed by 2 different users and the flow of activities changes according to this role, should be specified in 2 different sequence diagram one per role? ...

Sequence Diagram return a new constructed Object

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 Under...

mscgen: html output?

I have found mscgen a very useful message flow renderer, it can generate very good graphics, and also ismap to use in a html. But to visualize a message flow, it would be better if you can see the message detail when pointing to the message abstract in the picture. So I wonder if anyone has made an extension to mscgen that can directly...

What are some tools to convert Java programs into sequence diagrams?

What are some tools to convert Java programs into sequence diagrams? ...

Which tools do you recommend for java round-trip-engineering ?

I am especially interested in generating code from sequence diagrams and vice versa- ie., sequence diagrams from code. Ofcourse it would be nice if it was free and better if it was an eclipse plugin! ...

Anyone integrated Quick Sequence Diagram Editor with XCode

Has anyone had any luck integrating Quick Sequence Diagram Editor with XCode and in particular Objective C iPhone development? I have tried creating sequence diagrams manually with VP Suite and Omnigraffle type applications but as soon as the code changes the diagram is out of date, so the idea of generating it dynamically as the app is...

Can we draw sequence diagrams if we don't have classes in a program?

I have a program I made in C++ that does not use classes, just simply functions and main(). I want to know what kind of diagrams I can draw for it. Here are a couple of things I have in mind. Activity diagram Sequence diagram class diagram - obviously can't draw this because I didn't use classes system architecture state diagrams use ...

Drawing Call Flow with sequence Diagram leads to ambiguity

I want to draw a Sequence Diagram Where A -> B.run() B.run() -> B.m1() B.m1() -> B.m2() So far I've come up with these. But Here I cannot mention it clearly that B.m2() is called by B.m1() Rather it looks like B.run() Calls both B.m1() and B.m2() serially. ------------- EDIT ---------------- This is What I Currently have drawn h...