UML diagram describing object classes and relations among them.

learn more… | top users | synonyms

1
vote
2answers
29 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. ...
0
votes
0answers
11 views

iOS App Documentation and class diagram generation tools [duplicate]

I inherited an iOS 5 app which has no documentation. Could someone suggest any tool/s that automatically generate class diagram/s and documentation for this app? Im willing to pay for something ...
2
votes
2answers
32 views

Extracting an object diagram to a class diagram

Below, is the mapping of class diagram to object diagram correct? I can not seem to find a useful tutorial on object diagrams anywhere! Here is the image
0
votes
1answer
16 views

In class diagrams, should classes implementing an interface have the method names repeated?

I'm creating some UML diagrams, and I have a large number of classes implementing an interface. Is it necessary for these classes to also list the methods of the interface? It sounds quite trivial ...
0
votes
0answers
18 views

employee - manager class diagram, representing additional constraints on manager entity

I come from an ER background and am shifting to UML diagrams. I am constructing an UML diagram for a real work scenario. One of the class diagram I am constructing is a Employee - Manager class ...
0
votes
1answer
12 views

Class Diagram aspx

I am currently bussy with my Class Diagram. My project has some classes (example: User.cs, Friend.cs, Message.cs). And I have also some .aspx and .ascx (web user control) files which also have ...
0
votes
0answers
34 views

Class diagram for online store

I need help on designing database table for online store. Here is my class diagram : So I wonder is there anything wrong with my tables? Because it all seems separated. For example, this is how my ...
1
vote
1answer
62 views

Interface defined inside a class

How to indicate that an interface is a part of class? Let's take this case as an example. public class Function { public interface Function2D { double GetValue(double x); ...
-3
votes
1answer
85 views

How to create class diagram for my android app? [closed]

Any help with class diagram? I am building an app that communicates with SQLite native database of Android for transaction.
0
votes
1answer
44 views

Component diagram before class diagram?

I would like to know which diagram from those two should be created first when designing large IT system. In every article I read about UML, the component diagram is mentioned as almost last. I ...
0
votes
1answer
77 views

generating class diagram in visual studio 2010 express

I am relatively new to C# and I want to generate class diagram of my project. Can anybody tell me how to generate class diagram in visual studio 2010 express.I know that it is easy to do it on ...
2
votes
0answers
78 views

UML Class Diagram for Strategy Pattern

I have an exam in a couple of hours and I am trying to solve sample questions for it. I couldn't find a solution to following question. Draw a class diagram corresponding to the following ...
1
vote
3answers
164 views

How to draw class diagrams from C++ code

I have some C++ code that do not compile, I would like to draw class diagrams from it. Is there something very basic (nothing fancy just bare bone) I can use ? I am on linux
0
votes
0answers
32 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 ...
1
vote
1answer
45 views

How is dependency in class diagram

I have problem with dependencies in class diagram. I use these classes class data and class algorithm What is the relationship between classes? Thank you for your help Data.cs => public class Data ...
2
votes
0answers
139 views

Android Class Diagram

I would like to ask how to create class diagrams for Android applications. Example: There is Activity MyActivity, which has an onClick method, in which I call another Activity, or Service. My ...
1
vote
2answers
27 views

Does a method count as an association?

Taking into consideration this class diagram: There is a "has a" (aggregation) between the two, if I'm not mistaken, because Library actually can hold a handle to an instance of a book. Now, what ...
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
39 views

How to represent a webservice design

I am attempting to design a webservice. I usually just dive right in to these kinds of things after just scratching out some ideas on a whiteboard and giving my manager the high-level design. ...
0
votes
1answer
28 views

Is it possible to use a parent table Id instead of child table Id, when child table should put it's Id into another table

I have this Generalization relation ship between some classes in my class diagram. FirstClass as a base class that has Name attribute, SecondClass as a derived class that the FirstClass is it's base ...
0
votes
2answers
94 views

Program which can produce class diagrams directly from code

I have a somewhat large C# project which I am starting to lose overview of. I was wondering if there was some software out there which could graphically represent my classes, which calls what, and so ...
0
votes
1answer
127 views

UML Class Diagram Primary Key in Visio 2007

How do I show Primary and Foreign keys in Visio 2007? I'm completely stumped. All my research so far shows how to do it in 2003 but nothing for 2007. Thank You in advance for any help.
2
votes
1answer
49 views

How to change font size in existing visual studio class diagram?

I want to make text smaller, not zoom diagram but change font size. Is it possible?
0
votes
1answer
48 views

How to generate class diagram from xcdatamodel?

Is there any tool available which can generate a class diagram from existing xcdatamodel?
0
votes
2answers
47 views

what is the differences between class and dataType

As i read through UML specification that: class has a set of attributes/operations and data type has a set of attributes/operations 1)with regards to attributes/operations of data type what this ...
0
votes
1answer
189 views

how to create a uml class diagram from code

I am building a calculator app and I am stuck on creating a UML class diagram for it. Say if I have the following class in my project called CalculatorBrain, how could I make a UML class diagram out ...
-1
votes
1answer
136 views

Tool to create a diagrammatic representation of Java code / Get diagrams from code / Convert code to diagrams? [duplicate]

I want a tool which will see my java code or eclipse java project and convert it into diagrams which show relations and dependencies between classes and methods. Such a tool would greatly reduce the ...
2
votes
1answer
37 views

django many to many uml confusing

In my project i have a many to many relation. as django can handle a many to many relationship, i did like that: class Groups (models.Model): name=models.CharField(max_length=50) ...
2
votes
3answers
122 views

UML: when one class have as method parameter pointer to other class

When one class have as method parameter pointer(or reference, or object) to other class, in UML it is reflected as association or aggregation, with diamond, or have some specific notation?
1
vote
2answers
623 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 ...
1
vote
2answers
70 views

UML mapping: container class with objects of two types

Suppose that there is one container C that can contain objects of type A and B. C cannot be empty and can only contain 1 object of each type. That means that C contains one of the following: 1 ...
0
votes
1answer
78 views

UML class diagram associations

In UML class diagrams, I am told we should not have any standalone classes but that they should all be connected in some way. In theory that makes sense and with simple classes, sure.. take the ...
1
vote
0answers
92 views

Creating UML Class Diagrams programmatically

I want to be able to create UML class diagrams programmatically, and I saw VS Ultimate Edition has UML Class diagram support which is XML internally.My question is can I do this runtime and ...
1
vote
2answers
81 views

Organising classes in a JavaScript game

I need some help working out the class hierarchy for a game I'm developing with JavaScript. The game is a top-down space shooter with (at its basic level) a background, player, bullets and enemies. ...
0
votes
1answer
65 views

Can aggregation relationship in UML have one to one relationship

Can aggregation relationship in UML have one to one relationship? Our application is a store billing one. During billing we will provide member id to get him certain discount. So is relationship ...
0
votes
1answer
56 views

how to define a constant member function in enterprise architect?

I can't get the **int getId() const; member function to be generated by enterprise architect How do I specify a constant member function in enterprise architect?
0
votes
0answers
28 views

Costumizing UMLClassDiagram in visual studio 2012

I've created an UMLClassDiagram in visual studio 2012 and had some problems with its customization: 1)How do I make the qualified name to show only the class name without the entire namespace? It ...
0
votes
0answers
30 views

Omitting swing components in reverse engineering model in netbeans

just out of curiosity I wanted to ask you guys how to remove all swing components from a auto-generated class diagram in netbeans as part of the reverse engineering. Having followed this , there is ...
1
vote
2answers
177 views

What does a diamond sign signify in UML class diagrams?

Please consider the below two diagrams.One contains a plain arrow and the other one contains an arrow with a diamond infront of it.The great book GoF has usages of both of these two kinds of ...
0
votes
1answer
47 views

Display nodes below parent without taking ranks to account

I'm making sorta super simplified class diagram in dot language. The diagram contains only simple nodes with class names, inheritance and aggregation. In order to have a specific style for ...
0
votes
1answer
150 views

Should I put id attributes in UML class diagrams?

I'm drawing up some class diagrams here. I am wondering should I include auto-incremented attributes like the primary key user_id in the User table? Should I include these primary/foreign key id ...
0
votes
1answer
162 views

How virtual/abstract methods are displayed in class diagrams?

First, I am coming from the Java community, and still a learner in C++. Please have a look at the following classes The second picture shows a sub class of the class "GameObject". It also has a ...
1
vote
1answer
131 views

How to show multiplicities in UML object diagrams

I wonder if there is way to create an array of objects in UML? the following is my try using Modelio as a modeling environment but as you can see there is different objects(i.e. instance[0],instance ...
2
votes
1answer
382 views

How to draw UML Class diagram for my following java code?

I have an abstract process class Abstract class **A** it has member function run() classes B,C,D,E are inherited from abstract class A. I have an class called F (ProcessFactory) which has a ...
0
votes
0answers
268 views

Client server UML diagram

I would like to draw a client server UML diagram for my project. I have a web service written in node.js(It consists of a database that fetches data from various sensors) and a client for iOS(For ...
0
votes
0answers
40 views

Unable to open .cd file

I have created a class diagram in visula studio 2010 and saved it on the desktop with a .cd extension. After restarting my system, when I try opening the file once again, I get this error... "Cannot ...
0
votes
3answers
83 views

Specifying custom type for an attribute of a UML class

i have a class with attribute called interval and i like to give this attribute a minimum and maximum value to bound this interval, How can represent this? Does this possible?
0
votes
3answers
336 views

class versus interface in uml

As we know in OOP that interface provides a set of operations without implementation but class is the opposite. in Object oriented design ,we use uml the interface has a set of operations without ...
0
votes
1answer
157 views

Visual Paradigm Class Diagram Drawing

I need to create a Class Diagram with some Model Packages. I have to use Visual Paradigm as modeling editor. The target I'm looking for is a diagram like this one: My problem is the following: how ...
1
vote
2answers
55 views

dependency arrow in bridge pattern

Is the arrow read like "Arena depends on LeagueStore" ? How is this implemented ? Here is a similar question, but it doesn't include such an arrow. picture taken from slide 9

1 2 3 4 5 7