The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
9 views

Where can I find a good reference to study the authentication protocols bank uses for ATM's [closed]

Where can I find a good reference to study the authentication protocols bank uses for ATM cards.
1
vote
1answer
63 views

Drawing Sequence diagram in java

I have made a Sequence diagram, and i want to know about it is well or not from this basic code public void onClick(final View v) { r = new Runnable() { public void run() { ...
1
vote
2answers
41 views

UMLet Diagrams like Use Case, Class, Activity, etc

Can you please help me find a detailed tutorial on this topics: 1. UML 2. Behavior Diagrams A. Use Case Diagrams B. Activity Diagrams 3. Structure Diagrams A. Class Diagram 4. ...
-6
votes
0answers
38 views

Converting a java method into a sequence diagram

I have 3 java classes - inside each one we have: // A method that print information about the first class public String printR1(){ String result =""; result += "\n Date : "+date+"\n"; ...
0
votes
0answers
24 views

placing an order : system sequence diagram

I'm developing an e-commerce website and I want to model the for placing an order. the payment mode it can be by PayPal, by CC, or by check. But I don't know what are the interactions in the payment ...
-1
votes
1answer
48 views

Drawing a sequence diagram [closed]

Am kind of new to sequence diagrams and am a bit confused with sequence diagrams. I have a system where an administrator will manage the system, so my problem is if i am drawing a sequence diagram for ...
0
votes
0answers
13 views

In a UML sequnce diagram with a Controller object, should said object create business object(s)?

I am trying to model a scenario where a user withdraws funds from an ATM, with a UML sequence diagram, as part of grad student homework (gone bad). I try to use a Controller, as part of MVC framework, ...
0
votes
1answer
20 views

Representing insertion of a already created object

I'm modeling a sequence diagram from a code like this: void MyObject::createADevice{ Device* someDevice = new Device(); devices[i] = someDevice; Screen* scr = new Screen(); ...
0
votes
2answers
31 views

Referencing an instance of a given class in sequence diagrams

I have to model a system where an object of the class Person will invoke the static method getBook(...) : Book on the class Book which will return an instance of a particular book. How do you ...
0
votes
2answers
32 views

How to export jdeveloper sequence diagram into any image format?

Good evening, i made a sequence diagram on jdeveloper and i want to export it into any image format instead of the .sequence extension, does any one know how to do that?
0
votes
1answer
27 views

UML partial ordering in Sequence diagram

with regard to sequence diagram and exactly in partial ordering I read the following sentence but i didn't understand the exact meaning of it : "interactions are only partially ordered" What ...
0
votes
0answers
34 views

How do I produce a design document for a web application based on Python CGI scripts?

I need to create a design document, including diagrams, UML, etc. for a web application. The application in question is a combination of Python CGI scripts, some python modules and a number of HTML ...
0
votes
0answers
20 views

data recognition using python [duplicate]

I Have been given a assignment where i need to instrument a given application and generate a trace file and later on from the trace file a sequence diagram needs to be generated. The application is ...
0
votes
1answer
48 views

Representing polymorphism in Sequence Diagram

I have an abstract parent class Server and 3 subclasses InternalServer, ExternalServer and LoggableInternalServer. Server has the public abstract method receiveClient(). The application has a list of ...
0
votes
1answer
38 views

Sets of different classes = Component?

This is not really a programming question but more of a software engineering question. My program has many features - some example are display lesson, retrieve user info and so on. For each of these ...
0
votes
1answer
44 views

Any view layer objects exist in Ruby on rails?

I am asked to draw the sequence diagram to represent the MVC pattern in Ruby on rails. Since sequence diagrams is an "object diagram", the models, controllers, views should be objects. In Ruby on ...
3
votes
1answer
166 views

Is this UML sequence diagram of a AJAX - database query with JS and PHP right?

I have the following UML diagram of a web application. It is a web-based analysis tool, where the user can perform requests in a GUI to gain some values from a DB. The values are loaded via ...
1
vote
2answers
713 views

How to generate class diagrams and sequence diagrams from existing code?

I have a Java code which I need to generate the class diagrams and sequence diagrams. I am using netbeans, but the code is 100% pure hand coded. How can I generate the class diagrams and sequence ...
0
votes
1answer
430 views

Visio 2010 UML Sequence diagram - lifeline does not have enough connectors

I am using Microsoft Visio 2010. I am drawing a UML sequence diagram. I added object Lifeline and started drawing diagram. Because the diagram is very long, at one point there would not be any more ...
1
vote
1answer
81 views

How to show a function in a sequence diagram that is implemented by multiple interfaces?

I want to draw a sequence diagram. A class calls a function f for an instance of class B. Class B is implemented by two interfaces, X, and Y. Both X and Y implement f. How should I denote that the f ...
1
vote
1answer
91 views

How will inheritance is depicted in a sequence diagram?

Say method m of class A calls method n on class B, but the source code of class B does not contain n, since n is inherited from one of the superclasses of B. How will the sequence diagram look? ...
0
votes
0answers
108 views

Create an interactive sequence diagram in HTML / JavaScript with non-image output

I want to create a representation of a sequence diagram on a HTML/JavaScript page. And I want the visualization to be interactive. E.g. I want to be able to click on each of the objects/life-lines/etc ...
0
votes
1answer
95 views

What do the vertical rectangles convey in a UML sequence diagram?

What do the vertical rectangles signify in a UML sequence diagram? For example I want to know the meaning of the rectangle pointed to by the green arrow. Do the height of these rectangles mean ...
0
votes
0answers
306 views

How to display callbacks in sequence diagrams Visio 2013?

I want to sketch a sequence diagram including callbacks. Poorly Visio 2013 transforms my arrows / messages in dashed return messages. How can I disable this behavior? Here is a minimal example. All ...
0
votes
1answer
60 views

Database & Server UML

I'm designing a simple client-server system(JAVA) which stores some information on the server and I am currently creating sequence diagrams. My question is: In UML should a'database' object be ...
0
votes
2answers
321 views

How to draw a Sequence Diagram for a Use Case that <<extend >> another Use Case?

Can anyone provide any links that show how to draw this type of conditions?
1
vote
1answer
51 views

Does time go downward in an UML sequence diagram?

I believe that in any UML sequence diagram, time goes downward (and to the right), for example: 2013 2014 2015 2016 So the end would be at the bottom and (optionally) to the right. Is this in ...
0
votes
1answer
296 views

Sequence Diagram context menu absent in Visual Studio 2012 but was there in VS2010

I used to be able to generate sequence diagrams in Visual Studio 2010 by right-clicking within a function and selecting the appropriate menu option. I just installed Visual Studio Premium 2012 ...
2
votes
3answers
74 views

Is there a tool to build live recorded sequence diagrams?

Objective Run an ASP.NET application, walk through a process, and get a sequence diagram back. One that would show me post backs and methods called - stuff like that. My Research I've performed the ...
1
vote
2answers
307 views

constructor in UML sequence diagram

what is the meaning of the following sequence diagram and exactly the constructor(that is represented as a create object)?
0
votes
1answer
143 views

slight issues while implementing a sequence diagram

I have a sequence diagram in screenshot below but I have 2 little questions: Question 1: The pages follow sequence until user gets on Penalty Marks Information page, there they decide if they want to ...
0
votes
2answers
83 views

More than one source for a process

I have a sequence diagram in Enterprise Architect. In it is a process which can be initiated by one of two sources: either a timer process or a manual one (a user hitting a button on a GUI screen). ...
1
vote
1answer
82 views

Reading Sequence Diagram with some conditions

I have the following sequence diagram that consists of four lifelines exchanging a set of messages. My question is: How can i read the stuffs surrounded by red rectangle in this diagram? This is ...
2
votes
3answers
392 views

How to represent calls within same class using UML-Sequence diagram

I am trying to create UML sequence diagram for a particular process in our application. The problem is that most of the business logic is in one class and when I try to map it in sequence diagrams, I ...
0
votes
0answers
25 views

Can you use types from Architecture Explorer in UML Sequence or Class diagrams in VS2010

I hope I'm just missing something basic here. I have VS2010 Ultimate. I have the Architecture Explorer and it works great. I can create a Model project. This also works great. However... Is it not ...
2
votes
2answers
140 views

Reading sequence diagram

I have the following Sequence Diagram consists of two lifelines and synchronous message I read it as the following : The "lifeline1" represents an object execute during a period of time. During ...
0
votes
2answers
625 views

Sequence diagram for basic web-based application

I am trying to create a sequence diagram for a web-based application which is being run using TomCat as a local host. The application enables users to enter text into a text box and save it to a ...
0
votes
0answers
15 views

Is it possible to mount a raw sequence diagram with gdb

When we do (gdb) backtrace the stack frame is printed, but once you return to a calling method the called frame is missed. Is there possible to list the stack history, to mount a raw sequence ...
3
votes
2answers
69 views

TimeObservation in UML specification

In the UML specification superstructure (2.5 still Beta,page 87): A TimeObservation is a reference to a time instant during an execution. It points out the NamedElement in the model to observe ...
6
votes
1answer
108 views

ActionExecutionSpecification and BehaviorExecutionSpecification

With regard to UML specification superstructure i read about ActionExecutionSpecification and BehaviorExecutionSpecification What is the differences between them? In which cases i should use each ...
3
votes
2answers
262 views

Sequence diagram for virtual methods in a subclass

I'm working a C# API that has a fairly complex order of virtual method calls that could be overridden in various levels of the type hierarchy. I'd like to be able to document the order of execution of ...
0
votes
1answer
77 views

message syntax in sequence diagram

i am using Papyrus for modeling sequence diagram i wonder if there is syntax that i should follow for the message that resides between lifelines and also how can identify the variables associated with ...
1
vote
1answer
66 views

How to add more than one execution specification on sequence diagram using Dia Software

I'm using Dia to make a sequence diagram and I need to make a lifeline with two (or more) execution specification, like the image below: (What I want is inside the green circles) How can i do that? ...
0
votes
0answers
58 views

Sequence diagram for WSN behaviour

I design a system for counting people using WSN with infrared sensors and star topology (communication between sensors and base station is direct), but i dont know how to create a sequence diagram to ...
0
votes
1answer
114 views

How to represent method reuse in sequence diagram?

Need to reuse the method existing in a class.How can i create sequence diagram for this. To explain elaborately, I have successfully represented the following scenario. 1. I have called a existing ...
0
votes
1answer
49 views

Database Engine Design

I have been tasked with designing a database engine. I don't have to implement code at all, only design (psuedocode, sequence diagrams, etc). I have been given the methods and am looking for any help ...
0
votes
0answers
82 views

Move 1 message independently in Magic Draw Sequence Diagram

I'm modeling some behavior with sequence diagrams using Magic Draw 17.0. As you know Magic Draw tries to help you out when you move 1 message/action line up or down a lifeline by moving all the lines ...
3
votes
1answer
313 views

Automatic sequence diagrams

I have inherited a huge codebase and I was wondering if there was any tool that allowed me to mark any method inside my project and create a sequence diagram with all the calls to classes on my ...
4
votes
2answers
503 views

generate uml sequence diagrams with python or perl

I have some text which I will process to generate a uml sequence diagram image. I can process the text in python or perl into a format of an existing 'text to uml' tools but I'm trying to eliminate ...
1
vote
2answers
203 views

How to document a sequence diagram

How to document (describe) a sequence diagram in a technical report? Is there any guidelines for that?

1 2 3 4