uml

Software for Sequence Diagrams? [closed]

匿名 (未验证) 提交于 2019-12-03 02:05:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I've been using NClass for object/class modeling in class thus far. However, I do not believe that it is capable of sequence diagrams, which is my next task. I would prefer not to use Visio. Is there a good and free software solution for making sequence diagrams? 回答1: For me there are usually about 3 tools I prefer to use. Netbeans UML Plugin (Its free and its nice) Visual Paradigm UML (its really nice but it isn't free, you might be able to get a free academic copy, but that requires a bit of work Visio (I Know you said you didn't like it,

UML Plugin for Netbeans 7.0?

こ雲淡風輕ζ 提交于 2019-12-03 02:01:58
问题 how can i install/add UML plugin to Netbeans 7.0, i can find several ways to install plugin but only for the earlier versions from 6.9 http://forums.netbeans.org/topic28035.html its not working for me. 回答1: Here is how to install on 7.1 (should also work for 7.0) Add a new configuration to update centers: Tools -> Plugins -> Settings -> Add As the URL copy the following into the textbox: http://dlc.sun.com.edgesuite.net/netbeans/updates/6.9/uc/m1/dev/catalog.xml Now on the tab Available

Standard UML file format

匿名 (未验证) 提交于 2019-12-03 01:47:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have designed UML diagrams in different tools (StarUML, BoUML, Papyrus, Omondo, Rational Rose, etc.) depending on the project and the date (rose was first, after Omondo, then starUMl, ..., now papyrus). However, I see that I cannot open my old UML diagrams because the tool is obsolete. I would like to know if there is a standard format for UML diagrams. Probably not in production, but at least to know if there is proposal of standard format. Probably, Eclipse is doing something like that with the M2 project, but do the other tools (not

Differences between EER and UML

匿名 (未验证) 提交于 2019-12-03 01:45:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm putting together a visual representation of a database I designed. I've downloaded MySQL workbench and can create a EER diagram. What's the difference between this and a UML diagram? Also, where does a ERD come into this? I can't find a question on here that matches what I'm after here? Thanks. 回答1: I think by UML diagram you mean : UML Class Diagram. [ there are other UML diagrams also] Used for Database Design . Like class diagrams support also subclass -superclass [specialization and generalization]. So entities in EER

Visual Studio - Generate UML from a c++ project

元气小坏坏 提交于 2019-12-03 01:41:38
Currently I am reading though the cryengine gamecode. It is huge not very well documented. It would be really good if I could create an UML diagram from the project file. I already found some tools to generate an UML diagram from c++ code, the problem is that the cryengine project is really huge and it would take a lot of time to do this. Do you think this is possible? billz Visual Studio has the build-in UML generator. On Visual Studio project, select Class View , right click on the namespace, select View Class Diagram . It may take a while to generate UML diagrams if your project is big.

Visual Studio generate code from UML diagrams?

匿名 (未验证) 提交于 2019-12-03 01:39:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm doing research on producing code from UML diagram using Visual Studio 2015. From what I have done, I have created Use case, Activity, Sequence and Class diagram before generating the code. When I generate the code, I see that Visual Studio only takes my class diagram to be referred to when it generates the code. So my question, is it true that Visual Studio will only refer to the class diagram when generating the code? If not, which means that the way I'm doing the other diagram is wrong (the way I'm using the tools is wrong) what other

Understanding UML of DoFactory Design Pattern - Decorator

匿名 (未验证) 提交于 2019-12-03 01:34:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I am trying to understand UML diagram describing Decorator Pattern at link below http://www.dofactory.com/Patterns/PatternDecorator.aspx I don't understand why there is a "Aggregation" relation between Decorator and Component. I believe it should be composition as Decorator cannot exist without the base component. 回答1: Composition is stronger that aggregation, it usually means that the object takes ownership of its components. This is not the case in this situation because a decorator doesn't own a decorated object. Moreover you

Which State Machine execution frameworks for C++ implement UML semantics?

匿名 (未验证) 提交于 2019-12-03 01:33:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm looking for a framework that provides execution of hierarchical state machines (HSMs). These are the requirements for the framework: Conforms to UML state machine semantics (as much as possible) Supports at least run-to-completion semantics hierarchical states entry and exit actions transition actions guards events with custom parameters Is object-oriented or does at least not prohibit OO designs The target platform is an medium- to large-sized embedded system with an OS. Do you know a framework that fulfills the above

How do you show events in UML Class Diagrams? [closed]

匿名 (未验证) 提交于 2019-12-03 01:29:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: This one has me stumped regularly while creating top level class diagrams for documentation. Methods and attributes/fields are easy to model. I usually end up adding a method named EvChanged to indicate a .Net event Changed. What is the right way to show that a type publishes a specific event? 回答1: 回答2: I find onEventName() the easiest naming scheme for event callbacks, but how to indicate which events an object can broadcast I've not found any solution. An extended UML class diagram that would allow for customized containers (besides the

What's the best way to generate a UML diagram from Python source code? [closed]

匿名 (未验证) 提交于 2019-12-03 01:26:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: A colleague is looking to generate UML class diagrams from heaps of Python source code. He's primarily interested in the inheritance relationships, and mildly interested in compositional relationships, and doesn't care much about class attributes that are just Python primitives. The source code is pretty straightforward and not tremendously evil--it doesn't do any fancy metaclass magic, for example. (It's mostly from the days of Python 1.5.2, with some sprinklings of "modern" 2.3ish stuff.) What's the best existing solution to recommend? 回答1